Skip to content
Snippets Groups Projects
Commit 78b400e8 authored by syuilo's avatar syuilo
Browse files

fix(client): MFM関数構文のサジェストで括弧を無視するように

parent 8d93f148
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment