diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-09-26 03:25:00 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-09-26 03:25:00 +0900 |
| commit | 78b400e8b0505ca319c77209f0c6760140622248 (patch) | |
| tree | 41620eb63c46a11f444157a64722a4f370daabf3 /src/client/scripts | |
| parent | 重いというか邪魔 (diff) | |
| download | sharkey-78b400e8b0505ca319c77209f0c6760140622248.tar.gz sharkey-78b400e8b0505ca319c77209f0c6760140622248.tar.bz2 sharkey-78b400e8b0505ca319c77209f0c6760140622248.zip | |
fix(client): MFM関数構文のサジェストで括弧を無視するように
Diffstat (limited to 'src/client/scripts')
| -rw-r--r-- | src/client/scripts/autocomplete.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/scripts/autocomplete.ts b/src/client/scripts/autocomplete.ts index e952ad3907..c0c33b2c7e 100644 --- a/src/client/scripts/autocomplete.ts +++ b/src/client/scripts/autocomplete.ts @@ -120,7 +120,7 @@ export class Autocomplete { if (isMfmTag && !opened) { const mfmTag = text.substr(mfmTagIndex + 1); if (!mfmTag.includes(' ')) { - this.open('mfmTag', mfmTag); + this.open('mfmTag', mfmTag.replace('[', '')); opened = true; } } |