From 3ccfad63bf2891398b1c5dcaa76afee0312d46d2 Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Tue, 13 Feb 2024 11:18:05 +0500 Subject: [PATCH] web: add readonly indicator on notes --- apps/web/src/components/note/index.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/web/src/components/note/index.tsx b/apps/web/src/components/note/index.tsx index f3d260584..16df3be81 100644 --- a/apps/web/src/components/note/index.tsx +++ b/apps/web/src/components/note/index.tsx @@ -191,6 +191,7 @@ function Note(props: NoteProps) { {note.conflicted && } {locked && } {note.favorite && } + {note.readonly && } ) : ( @@ -228,6 +229,8 @@ function Note(props: NoteProps) { {locked && } + {note.readonly && } + {note.favorite && } {tags?.items.map((tag) => {