Skip to content

Commit

Permalink
Adjust loading flag
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Dec 2, 2024
1 parent aa9704e commit 9af0df8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions client/src/components/Markdown/Markdown.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<script setup lang="ts">
import { ref, computed, watch, onMounted } from "vue";

Check failure on line 2 in client/src/components/Markdown/Markdown.vue

View workflow job for this annotation

GitHub Actions / client-unit-test (18)

Run autofix to sort these imports!
import { useWorkflowStore } from "@/stores/workflowStore";
import { parseMarkdown } from "./parse";
Expand All @@ -8,8 +9,8 @@ import MarkdownDefault from "./Sections/MarkdownDefault.vue";
import MarkdownVega from "./Sections/MarkdownVega.vue";
import MarkdownVitessce from "./Sections/MarkdownVitessce.vue";
import LoadingSpan from "components/LoadingSpan.vue";
import StsDownloadButton from "components/StsDownloadButton.vue";
import LoadingSpan from "@/components/LoadingSpan.vue";
import StsDownloadButton from "@/components/StsDownloadButton.vue";
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
import { library } from "@fortawesome/fontawesome-svg-core";
Expand Down Expand Up @@ -37,7 +38,7 @@ interface MarkdownConfig {
const props = defineProps<{
markdownConfig: MarkdownConfig;
enable_beta_markdown_export?: boolean;
downloadEndpoint?: string;
downloadEndpoint: string;
readOnly?: boolean;
exportLink?: string;
}>();
Expand Down Expand Up @@ -95,8 +96,8 @@ function initConfig() {
collections.value = config.history_dataset_collections || {};
workflows.value = config.workflows || {};
invocations.value = config.invocations || {};
loading.value = false;
workflowID.value = Object.keys(config.workflows || {})[0] || "";
loading.value = false;
}
}
Expand Down

0 comments on commit 9af0df8

Please sign in to comment.