diff options
| author | Marie <marie@kaifa.ch> | 2023-12-31 22:26:19 +0100 |
|---|---|---|
| committer | Marie <marie@kaifa.ch> | 2023-12-31 22:26:46 +0100 |
| commit | 6a46e30f673f8e544e52536429b904577e7c72a2 (patch) | |
| tree | c89d53da8583d91cedcb24523bcd474802577e58 /packages/frontend/src/scripts/mfm-function-picker.ts | |
| parent | fix: broken icon in emoji picker (diff) | |
| download | sharkey-6a46e30f673f8e544e52536429b904577e7c72a2.tar.gz sharkey-6a46e30f673f8e544e52536429b904577e7c72a2.tar.bz2 sharkey-6a46e30f673f8e544e52536429b904577e7c72a2.zip | |
chore: fix icons
Diffstat (limited to 'packages/frontend/src/scripts/mfm-function-picker.ts')
| -rw-r--r-- | packages/frontend/src/scripts/mfm-function-picker.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/scripts/mfm-function-picker.ts b/packages/frontend/src/scripts/mfm-function-picker.ts index 465926fe04..6e25cc856c 100644 --- a/packages/frontend/src/scripts/mfm-function-picker.ts +++ b/packages/frontend/src/scripts/mfm-function-picker.ts @@ -25,7 +25,7 @@ function getFunctionList(textArea: HTMLInputElement | HTMLTextAreaElement, textR MFM_TAGS.forEach(tag => { ret.push({ text: tag, - icon: 'ti ti-icons', + icon: 'ph-brackets-curly ph-bold ph-lg', action: () => add(textArea, textRef, tag), }); }); |