Skip to content

Commit

Permalink
Fix make-extension template
Browse files Browse the repository at this point in the history
  • Loading branch information
jridgewell committed Nov 12, 2021
1 parent d3f59c7 commit 352367f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__css_import__;
import {Layout, applyFillContent} from '#core/dom/layout';
import {Layout_Enum, applyFillContent} from '#core/dom/layout';

const TAG = 'amp-__component_name_hyphenated__';

Expand All @@ -26,7 +26,7 @@ export class Amp__component_name_pascalcase__ extends AMP.BaseElement {

/** @override */
isLayoutSupported(layout) {
return layout == Layout.RESPONSIVE;
return layout == Layout_Enum.RESPONSIVE;
}
}

Expand Down

0 comments on commit 352367f

Please sign in to comment.