mirror of
https://github.com/sim1222/misskey.git
synced 2025-08-04 15:53:51 +09:00
fix(client): MFM関数構文のサジェストで括弧を無視するように
This commit is contained in:
@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user