Skip to content

Commit 1063030

Browse files
committed
fix: change manifest imports
1 parent bf69f76 commit 1063030

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/custom-element-manifest-viewer/custom-element-manifest-viewer.stories.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ interface ArgTypes {
9090
}
9191

9292
const Template: Story<ArgTypes> = ({ tagName}) => html`
93-
<custom-element-manifest-viewer tag-name=${tagName} src='../public/custom-element-manifest-viewer/sample-custom-elements.json'>
93+
<custom-element-manifest-viewer tag-name=${tagName} src='/custom-element-manifest-viewer/sample-custom-elements.json'>
9494
</custom-element-manifest-viewer>
9595
`;
9696

@@ -102,7 +102,7 @@ Default.args = {
102102
};
103103

104104
const Slots: Story<ArgTypes> = ({ tagName}) => html`
105-
<custom-element-manifest-viewer tag-name='tap-row' src='../public/custom-element-manifest-viewer/sample-custom-elements.json'>
105+
<custom-element-manifest-viewer tag-name='tap-row' src='/custom-element-manifest-viewer/sample-custom-elements.json'>
106106
<tap-icon-default color="black" data-knob-type="slot" slot="leading" title="icon"></tap-icon-default>
107107
<tap-checkbox data-knob-type="slot" slot="leading" title="checkbox"></tap-checkbox>
108108
<tap-radio data-knob-type="slot" slot="leading" title="radio"></tap-radio>
@@ -194,7 +194,7 @@ const Theme: Story<ArgTypes> = ({ tagName}) => html`
194194
border-radius: 0 0 8px 8px;
195195
}
196196
</style>
197-
<custom-element-manifest-viewer tag-name=${tagName} src='../public/custom-element-manifest-viewer/sample-custom-elements.json'>
197+
<custom-element-manifest-viewer tag-name=${tagName} src='/custom-element-manifest-viewer/sample-custom-elements.json'>
198198
</custom-element-manifest-viewer>
199199
`;
200200

0 commit comments

Comments
 (0)