Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
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
22 changes: 22 additions & 0 deletions src/dispatch/static/dispatch/src/case/ReportReceiptCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,26 @@
</v-list-item>
<v-divider />
</span>
<span v-if="activeResourcePlugins.conversation">
<v-list-item v-if="conversation" :href="conversation.weblink" target="_blank">
<v-list-item-content>
<v-list-item-title>Conversation</v-list-item-title>
<v-list-item-subtitle>{{ conversation.description }}</v-list-item-subtitle>
</v-list-item-content>
<v-list-item-action>
<v-list-item-icon>
<v-icon>open_in_new</v-icon>
</v-list-item-icon>
</v-list-item-action>
</v-list-item>
<v-list-item v-else>
<v-list-item-content>
<v-list-item-title>Creating case conversation...</v-list-item-title>
<v-progress-linear indeterminate />
</v-list-item-content>
</v-list-item>
<v-divider />
</span>
<span v-if="activeResourcePlugins.storage">
<v-list-item v-if="storage" :href="storage.weblink" target="_blank">
<v-list-item-content>
Expand Down Expand Up @@ -176,6 +196,7 @@ export default {
document: null,
ticket: null,
storage: null,
conversation: null,
},
project_faq: null,
}
Expand Down Expand Up @@ -220,6 +241,7 @@ export default {
"selected.description",
"selected.visibility",
"selected.storage",
"selected.conversation",
"selected.documents",
"selected.project",
"selected.loading",
Expand Down
13 changes: 13 additions & 0 deletions src/dispatch/static/dispatch/src/case/ResourcesTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,18 @@
</v-list-item-action>
</v-list-item>
<v-divider />
<v-list-item v-if="conversation" :href="conversation.weblink" target="_blank">
<v-list-item-content>
<v-list-item-title>Conversation</v-list-item-title>
<v-list-item-subtitle>{{ conversation.description }}</v-list-item-subtitle>
</v-list-item-content>
<v-list-item-action>
<v-list-item-icon>
<v-icon>open_in_new</v-icon>
</v-list-item-icon>
</v-list-item-action>
</v-list-item>
<v-divider />
<span v-for="group in groups" :key="group.resource_id">
<v-list-item :href="group.weblink" target="_blank">
<v-list-item-content>
Expand Down Expand Up @@ -68,6 +80,7 @@ export default {
"selected.groups",
"selected.storage",
"selected.ticket",
"selected.conversation",
]),
},
}
Expand Down
1 change: 1 addition & 0 deletions src/dispatch/static/dispatch/src/case/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ const getDefaultSelectedState = () => {
title: null,
triage_at: null,
visibility: null,
conversation: null,
workflow_instances: null,
}
}
Expand Down