|
1 | 1 | <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"; |
3 | 3 | import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome"; |
4 | 4 | import { BAlert, BButton, BButtonGroup, BCard, BFormCheckbox, BOverlay } from "bootstrap-vue"; |
5 | 5 | import { storeToRefs } from "pinia"; |
@@ -222,34 +222,34 @@ async function onExecute() { |
222 | 222 | @on-execute="onExecute"> |
223 | 223 | <template v-slot:workflow-title-actions> |
224 | 224 | <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> |
253 | 253 | </BButtonGroup> |
254 | 254 | </template> |
255 | 255 | </WorkflowNavigationTitle> |
|
0 commit comments