From 0bd385395ee6b1e63b479fcfec561dcfba63f193 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) => {