summaryrefslogtreecommitdiff
path: root/packages/frontend/src/scripts/get-note-menu.ts
diff options
context:
space:
mode:
authorMar0xy <marie@kaifa.ch>2023-11-04 21:52:12 +0100
committerMar0xy <marie@kaifa.ch>2023-11-04 21:52:12 +0100
commitdb29a5c2da3a8dcf630536b95337df398440d86e (patch)
tree421faa6ae5c4a22a18105a7b1412af9ec06dbfa2 /packages/frontend/src/scripts/get-note-menu.ts
parentchore: replace icons on new menu (diff)
parentfix: icons being inconsistent and PG (#136) (diff)
downloadsharkey-db29a5c2da3a8dcf630536b95337df398440d86e.tar.gz
sharkey-db29a5c2da3a8dcf630536b95337df398440d86e.tar.bz2
sharkey-db29a5c2da3a8dcf630536b95337df398440d86e.zip
merge: develop
Diffstat (limited to 'packages/frontend/src/scripts/get-note-menu.ts')
-rw-r--r--packages/frontend/src/scripts/get-note-menu.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/frontend/src/scripts/get-note-menu.ts b/packages/frontend/src/scripts/get-note-menu.ts
index 4ede9389d1..e64c08c0ab 100644
--- a/packages/frontend/src/scripts/get-note-menu.ts
+++ b/packages/frontend/src/scripts/get-note-menu.ts
@@ -306,7 +306,7 @@ export function getNoteMenu(props: {
},
} : undefined,
{
- icon: 'ph-share-network ph-bold pg-lg',
+ icon: 'ph-share-network ph-bold ph-lg',
text: i18n.ts.share,
action: share,
},
@@ -317,11 +317,11 @@ export function getNoteMenu(props: {
} : undefined,
null,
statePromise.then(state => state.isFavorited ? {
- icon: 'ph-star-half ph-bold pg-lg',
+ icon: 'ph-star-half ph-bold ph-lg',
text: i18n.ts.unfavorite,
action: () => toggleFavorite(false),
} : {
- icon: 'ph-star ph-bold pg-lg',
+ icon: 'ph-star ph-bold ph-lg',
text: i18n.ts.favorite,
action: () => toggleFavorite(true),
}),
@@ -384,7 +384,7 @@ export function getNoteMenu(props: {
action: edit,
} : undefined,
{
- icon: 'ph-pencil-line ph-bold pg-lg',
+ icon: 'ph-pencil-line ph-bold ph-lg',
text: i18n.ts.deleteAndEdit,
danger: true,
action: delEdit,