Skip to content

Commit

Permalink
fix: FORMS-1896 host static images in repo (#1609)
Browse files Browse the repository at this point in the history
The three static images on the About page were hosted in the GitHub Wiki, which is no longer in use.
  • Loading branch information
WalterMoar authored Feb 18, 2025
1 parent 7ef87af commit dbe9235
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file added app/frontend/public/images/drag_drop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/frontend/public/images/quickstart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/frontend/public/images/team-management.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions app/frontend/src/views/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const chefsTourVideoUrl = computed(() => import.meta.env.VITE_CHEFSTOURURL);
<v-col cols="12" lg="4">
<BaseImagePopout
alt="Drag and Drop demo"
src="https://raw.githubusercontent.com/wiki/bcgov/common-hosted-form-service/images/quickstart.png"
src="images/quickstart.png"
width="600px"
:lang="locale"
/>
Expand All @@ -99,7 +99,7 @@ const chefsTourVideoUrl = computed(() => import.meta.env.VITE_CHEFSTOURURL);
<v-col cols="12" lg="4">
<BaseImagePopout
alt="Drag and Drop demo"
src="https://raw.githubusercontent.com/wiki/bcgov/common-hosted-form-service/images/drag_drop.png"
src="images/drag_drop.png"
width="600px"
:lang="locale"
/>
Expand All @@ -121,7 +121,7 @@ const chefsTourVideoUrl = computed(() => import.meta.env.VITE_CHEFSTOURURL);
<v-col cols="12" lg="4">
<BaseImagePopout
alt="Export demo"
src="https://raw.githubusercontent.com/wiki/bcgov/common-hosted-form-service/images/team-management.png"
src="images/team-management.png"
width="600px"
:lang="locale"
/>
Expand Down

0 comments on commit dbe9235

Please sign in to comment.