Skip to content

Commit b4a60b1

Browse files
Lukas742MarcusNotheis
authored andcommitted
docs(MediaGallery): fix links
1 parent 6a681f4 commit b4a60b1

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

packages/main/src/webComponents/MediaGallery/MediaGallery.stories.tsx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,22 @@ export const Default: Story = {
3030
return (
3131
<MediaGallery {...args}>
3232
<MediaGalleryItem>
33-
<img src="https://sap.github.io/ui5-webcomponents/main/assets/images/HT-1000.jpg" />
33+
<img src="https://sap.github.io/ui5-webcomponents/assets/images/HT-1000.jpg" />
3434
</MediaGalleryItem>
3535
<MediaGalleryItem>
36-
<img src="https://sap.github.io/ui5-webcomponents/main/assets/images/HT-1010.jpg" />
36+
<img src="https://sap.github.io/ui5-webcomponents/assets/images/HT-1010.jpg" />
3737
</MediaGalleryItem>
3838
<MediaGalleryItem>
39-
<img src="https://sap.github.io/ui5-webcomponents/main/assets/images/HT-1022.jpg" />
39+
<img src="https://sap.github.io/ui5-webcomponents/assets/images/HT-1022.jpg" />
4040
</MediaGalleryItem>
4141
<MediaGalleryItem>
42-
<img src="https://sap.github.io/ui5-webcomponents/main/assets/images/HT-1030.jpg" />
42+
<img src="https://sap.github.io/ui5-webcomponents/assets/images/HT-1030.jpg" />
4343
</MediaGalleryItem>
4444
<MediaGalleryItem>
45-
<img src="https://sap.github.io/ui5-webcomponents/main/assets/images/HT-2002.jpg" />
45+
<img src="https://sap.github.io/ui5-webcomponents/assets/images/HT-2002.jpg" />
4646
</MediaGalleryItem>
4747
<MediaGalleryItem>
48-
<img src="https://sap.github.io/ui5-webcomponents/main/assets/images/HT-2026.jpg" />
48+
<img src="https://sap.github.io/ui5-webcomponents/assets/images/HT-2026.jpg" />
4949
</MediaGalleryItem>
5050
</MediaGallery>
5151
);
@@ -57,12 +57,12 @@ export const CustomThumbnail: Story = {
5757
return (
5858
<MediaGallery {...args}>
5959
<MediaGalleryItem
60-
thumbnail={<img src="https://sap.github.io/ui5-webcomponents/main/assets/images/HT-1000-small.jpg" />}
60+
thumbnail={<img src="https://sap.github.io/ui5-webcomponents/assets/images/HT-1000-small.jpg" />}
6161
>
62-
<img src="https://sap.github.io/ui5-webcomponents/main/assets/images/HT-1000.jpg" />
62+
<img src="https://sap.github.io/ui5-webcomponents/assets/images/HT-1000.jpg" />
6363
</MediaGalleryItem>
6464
<MediaGalleryItem disabled>
65-
<img src="https://sap.github.io/ui5-webcomponents/main/assets/images/HT-1010.jpg" />
65+
<img src="https://sap.github.io/ui5-webcomponents/assets/images/HT-1010.jpg" />
6666
</MediaGalleryItem>
6767
</MediaGallery>
6868
);
@@ -80,10 +80,10 @@ export const InteractiveDisplayArea: Story = {
8080
<Toast ref={ref}>Display Area Clicked!</Toast>
8181
<MediaGallery {...args} interactiveDisplayArea onDisplayAreaClick={handleDisplayAreaClick}>
8282
<MediaGalleryItem>
83-
<img src="https://sap.github.io/ui5-webcomponents/main/assets/images/HT-1000.jpg" />
83+
<img src="https://sap.github.io/ui5-webcomponents/assets/images/HT-1000.jpg" />
8484
</MediaGalleryItem>
8585
<MediaGalleryItem selected>
86-
<img src="https://sap.github.io/ui5-webcomponents/main/assets/images/HT-1010.jpg" />
86+
<img src="https://sap.github.io/ui5-webcomponents/assets/images/HT-1010.jpg" />
8787
</MediaGalleryItem>
8888
</MediaGallery>
8989
</>

0 commit comments

Comments
 (0)