diff --git a/orion-ui/src/styles/views/flow-run.scss b/orion-ui/src/styles/views/flow-run.scss deleted file mode 100644 index 78cfc284dfef..000000000000 --- a/orion-ui/src/styles/views/flow-run.scss +++ /dev/null @@ -1,29 +0,0 @@ -@use '@prefecthq/miter-design/src/styles/abstracts/variables' as *; - -.copy-link { - background: transparent; - border: none; - border-radius: 4px; - color: $primary !important; - cursor: pointer; - padding: 4px 8px; - text-decoration: none; - transition: all 50ms; - user-select: none; - - &:hover, - &:focus { - color: $white !important; - background-color: $grey-20; - } - - &:active { - background-color: $grey-40; - } -} - -.blur { - backdrop-filter: blur(1px); - background-color: rgba(244, 245, 247, 0.8); - border-radius: 8px; -} diff --git a/orion-ui/src/views/FlowRun.vue b/orion-ui/src/views/FlowRun.vue index 1fa9c7cec271..7ccd22cd1f30 100644 --- a/orion-ui/src/views/FlowRun.vue +++ b/orion-ui/src/views/FlowRun.vue @@ -13,26 +13,25 @@ :class="{ blur: route.fullPath.includes('/radar') }" > -
- - Flow Version: - - -- +
@@ -62,6 +61,10 @@ const id = computed(() => { return route?.params.id as string }) +const version = computed(() => { + return flowRun.value.flow_version ?? '--' +}) + const flowRunBaseBody = computed(() => { return { id: id.value @@ -142,5 +145,32 @@ watch(id, () => {