Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/dispatch/static/dispatch/src/case/CaseTabs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,22 @@
/>
</template>
</DTooltip>

<!-- Go to legacy edit screen -->
<DTooltip text="Open legacy edit pane" hotkeys="">
<template #activator="{ tooltip }">
<v-btn
class="text-subtitle-2 font-weight-regular"
icon="mdi-square-edit-outline"
variant="text"
size="small"
:disabled="loading"
:href="editPageUrl()"
target="_self"
v-bind="tooltip"
/>
</template>
</DTooltip>
</div>
</div>

Expand Down Expand Up @@ -222,6 +238,10 @@ watch(
},
{ immediate: true, deep: true }
)

const editPageUrl = () => {
return `${route.path}/edit`
}
</script>

<style scoped>
Expand Down
Loading