Fix lint issue

This commit is contained in:
Gregory Schier
2024-09-19 06:27:02 -07:00
parent 24ea76e753
commit 99e91a692b

View File

@@ -78,9 +78,9 @@ class TemplateTagWidget extends WidgetType {
elt.title = this.option.invalid ? 'Not Found' : (this.option.value ?? '');
elt.setAttribute('data-tag-type', this.option.type);
elt.textContent =
this.option.type === 'variable'
? this.option.name
: `${this.option.name}(${this.option.args.length ? '…' : ''})`;
this.option.type === 'function'
? `${this.option.name}(${this.option.args.length ? '…' : ''})`
: this.option.name;
elt.addEventListener('click', this.#clickListenerCallback);
return elt;
}