Skip to content

Commit 8cf6e90

Browse files
committed
Post-merge formatting.
1 parent 3f6cc8b commit 8cf6e90

1 file changed

Lines changed: 29 additions & 29 deletions

File tree

client/src/components/Workflow/Run/WorkflowRunFormSimple.vue

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { faArrowRight, faCog, faInfoCircle,faSitemap } from "@fortawesome/free-solid-svg-icons";
2+
import { faArrowRight, faCog, faInfoCircle, faSitemap } from "@fortawesome/free-solid-svg-icons";
33
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
44
import { BAlert, BButton, BButtonGroup, BCard, BFormCheckbox, BOverlay } from "bootstrap-vue";
55
import { storeToRefs } from "pinia";
@@ -222,34 +222,34 @@ async function onExecute() {
222222
@on-execute="onExecute">
223223
<template v-slot:workflow-title-actions>
224224
<BButtonGroup>
225-
<BButton
226-
v-b-tooltip.hover.noninteractive.html
227-
size="sm"
228-
:title="!showGraph ? 'Show workflow graph' : 'Hide workflow graph'"
229-
variant="link"
230-
:pressed="showGraph"
231-
@click="showRightPanel = showGraph ? null : 'graph'">
232-
<FontAwesomeIcon :icon="faSitemap" fixed-width />
233-
</BButton>
234-
<BButton
235-
v-if="model.runData.help"
236-
v-b-tooltip.hover.noninteractive.html
237-
size="sm"
238-
:title="!showHelp ? 'Show workflow help' : 'Hide workflow help'"
239-
variant="link"
240-
:pressed="showHelp"
241-
@click="showRightPanel = showHelp ? null : 'help'">
242-
<FontAwesomeIcon :icon="faInfoCircle" fixed-width />
243-
</BButton>
244-
<BButton
245-
v-b-tooltip.hover.noninteractive
246-
size="sm"
247-
title="Workflow Run Settings"
248-
variant="link"
249-
:pressed="showRuntimeSettingsPanel"
250-
@click="toggleRuntimeSettings">
251-
<FontAwesomeIcon :icon="faCog" fixed-width />
252-
</BButton>
225+
<BButton
226+
v-b-tooltip.hover.noninteractive.html
227+
size="sm"
228+
:title="!showGraph ? 'Show workflow graph' : 'Hide workflow graph'"
229+
variant="link"
230+
:pressed="showGraph"
231+
@click="showRightPanel = showGraph ? null : 'graph'">
232+
<FontAwesomeIcon :icon="faSitemap" fixed-width />
233+
</BButton>
234+
<BButton
235+
v-if="model.runData.help"
236+
v-b-tooltip.hover.noninteractive.html
237+
size="sm"
238+
:title="!showHelp ? 'Show workflow help' : 'Hide workflow help'"
239+
variant="link"
240+
:pressed="showHelp"
241+
@click="showRightPanel = showHelp ? null : 'help'">
242+
<FontAwesomeIcon :icon="faInfoCircle" fixed-width />
243+
</BButton>
244+
<BButton
245+
v-b-tooltip.hover.noninteractive
246+
size="sm"
247+
title="Workflow Run Settings"
248+
variant="link"
249+
:pressed="showRuntimeSettingsPanel"
250+
@click="toggleRuntimeSettings">
251+
<FontAwesomeIcon :icon="faCog" fixed-width />
252+
</BButton>
253253
</BButtonGroup>
254254
</template>
255255
</WorkflowNavigationTitle>

0 commit comments

Comments
 (0)