From ae40fae7a8968768b703a84319224ce29d2e16ca Mon Sep 17 00:00:00 2001 From: Assunta DeSanto Date: Thu, 2 Nov 2023 13:21:42 -0400 Subject: [PATCH] changing h3 tag to h2 and removing unnecessary methods --- client/src/components/Markdown/Markdown.vue | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/client/src/components/Markdown/Markdown.vue b/client/src/components/Markdown/Markdown.vue index c5e6b08ea642..50990e0bdac9 100644 --- a/client/src/components/Markdown/Markdown.vue +++ b/client/src/components/Markdown/Markdown.vue @@ -27,9 +27,9 @@

Title: {{ markdownConfig.title || markdownConfig.model_class }}

-

+

Workflow Checkpoint: {{ workflowVersions.version }} -

+ @@ -172,7 +172,7 @@ export default { }, created() { this.initConfig(); - this.getWFversion(); + this.fetchWorkflowForInstanceId(this.workflowID); }, methods: { ...mapActions(useWorkflowStore, ["getStoredWorkflowByInstanceId", "fetchWorkflowForInstanceId"]), @@ -192,9 +192,6 @@ export default { this.workflowID = Object.keys(this.markdownConfig.workflows)[0]; } }, - getWFversion() { - this.fetchWorkflowForInstanceId(this.workflowID); - }, splitMarkdown(markdown) { const sections = []; let digest = markdown;