lint: Run eslint --fix

This commit is contained in:
Richard Hansen 2022-02-21 00:36:14 -05:00
parent 8eb310854d
commit c8211f2898
9 changed files with 23 additions and 23 deletions

View file

@ -103,8 +103,8 @@ _.extend(Button.prototype, {
tag('button', {
'class': ` ${this.attributes.class}`,
'data-l10n-id': this.attributes.localizationId,
})
)
}),
),
);
},
});
@ -145,7 +145,7 @@ _.extend(SelectButton.prototype, Button.prototype, {
'data-type': 'select',
};
return tag('li', attributes,
this.select({id: this.attributes.selectId})
this.select({id: this.attributes.selectId}),
);
},
});