Skip to content

Commit

Permalink
feat: add footer to demo;fix ts error for linter; (#4726)
Browse files Browse the repository at this point in the history
  • Loading branch information
chinook25 authored Feb 14, 2025
1 parent 1a1250d commit 190844a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/tailwind-components/components/SourceCode.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ interface ISourceCodeMap {
[key: string]: string;
}
const sourceCodeMap: ISourceCodeMap = useRuntimeConfig().public.sourceCodeMap;
const sourceCodeMap: ISourceCodeMap = useRuntimeConfig().public
.sourceCodeMap as ISourceCodeMap;
const route = useRoute();
const sourceCode = computed<string>(() => {
return sourceCodeMap[`${route.path}.vue` as string] || "";
Expand Down
1 change: 1 addition & 0 deletions data/biobank-directory/demo/molgenis_settings.csv

Large diffs are not rendered by default.

0 comments on commit 190844a

Please sign in to comment.