Add explicit null template for array-selector

This makes the element compatible with strictTemplatePolicy.
This commit is contained in:
Allen Robinson
2018-10-30 17:15:40 -04:00
parent 2db60f5b60
commit d2d49dd9b7
+1
View File
@@ -426,6 +426,7 @@ class ArraySelector extends baseArraySelector {
// Not needed to find template; can be removed once the analyzer
// can find the tag name from customElements.define call
static get is() { return 'array-selector'; }
static get template() { return null; }
}
customElements.define(ArraySelector.is, ArraySelector);
export { ArraySelector };