Tags: return an empty string for invalid inputs to mention()

This commit is contained in:
Dragory 2019-04-30 06:10:36 +03:00
parent 7de57cc814
commit e5092c98fa

View file

@ -92,7 +92,7 @@ export class TagsPlugin extends ZeppelinPlugin<ITagsPluginConfig> {
return `<#${input}>`;
}
return input;
return "";
},
};
}