Skip to content

Commit

Permalink
fix: schema prop
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanLovely committed Jun 5, 2019
1 parent 1271de2 commit 6437e16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class BoltInteractivePathway extends withLitHtml() {
constructor(self) {
self = super(self);
self.useShadow = hasNativeShadowDomSupport;
// self.schema = this.getModifiedSchema(schema);
self.schema = schema;

self.fooList = ['One', 'Two', 'Three', 'Four', 'Five'];
self.activeItemIndex = 0;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { props, define, hasNativeShadowDomSupport } from '@bolt/core/utils';
import { withLitHtml } from '@bolt/core/renderers/renderer-lit-html';
import { withLitHtml, html } from '@bolt/core/renderers/renderer-lit-html';
import classNames from 'classnames/bind';
import styles from './interactive-pathways.scss';
import schema from '../interactive-pathways.schema.yml';
Expand All @@ -25,7 +25,7 @@ class BoltInteractivePathways extends withLitHtml() {
constructor(self) {
self = super(self);
self.useShadow = hasNativeShadowDomSupport;
self.schema = this.getModifiedSchema(schema);
self.schema = schema;
return self;
}

Expand Down

0 comments on commit 6437e16

Please sign in to comment.