mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
chore: update frontend dependencies
This commit is contained in:
@ -59,7 +59,7 @@ const MemoCommentMessage = ({ inbox }: Props) => {
|
||||
name: inbox.name,
|
||||
status: Inbox_Status.ARCHIVED,
|
||||
},
|
||||
["status"]
|
||||
["status"],
|
||||
);
|
||||
if (!silence) {
|
||||
toast.success("Archived");
|
||||
@ -73,7 +73,7 @@ const MemoCommentMessage = ({ inbox }: Props) => {
|
||||
"shrink-0 mt-2 p-2 rounded-full border",
|
||||
inbox.status === Inbox_Status.UNREAD
|
||||
? "border-blue-600 text-blue-600 bg-blue-50 dark:bg-zinc-800"
|
||||
: "border-gray-500 text-gray-500 bg-gray-50 dark:bg-zinc-800"
|
||||
: "border-gray-500 text-gray-500 bg-gray-50 dark:bg-zinc-800",
|
||||
)}
|
||||
>
|
||||
<Tooltip title={"Comment"} placement="bottom">
|
||||
@ -83,7 +83,7 @@ const MemoCommentMessage = ({ inbox }: Props) => {
|
||||
<div
|
||||
className={classNames(
|
||||
"border w-full p-3 px-4 rounded-lg flex flex-col justify-start items-start gap-2 dark:border-zinc-700 hover:bg-gray-100 dark:hover:bg-zinc-700",
|
||||
inbox.status !== Inbox_Status.UNREAD && "opacity-60"
|
||||
inbox.status !== Inbox_Status.UNREAD && "opacity-60",
|
||||
)}
|
||||
>
|
||||
<div className="w-full flex flex-row justify-between items-center">
|
||||
|
Reference in New Issue
Block a user