Remove unintentional committed ET2TaglistEmail file

This commit is contained in:
Hadi Nategh 2022-03-02 16:31:07 +01:00
parent 3112dc1399
commit d093a7648c

View File

@ -1,19 +0,0 @@
export class Et2TaglistEmail extends Et2Taglist
{
static get taglist_option () {return TaglistOptionEmail};
_setOptionTemplate()
{
return html`
${this.get_select_options().map(entry => html` <taglist-option .choiceValue="${entry.value}">${entry.label}</taglist-option> `)}
`;
}
get_select_options(): any
{
//@todo: override it accordingly
return super.get_select_options();
}
}
customElements.define('et2-taglist-email', Et2TaglistEmail);