Skip to content

Commit

Permalink
Fixing participant select and centralizes component
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgliss committed Nov 2, 2023
1 parent 0072458 commit 67efcd8
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 262 deletions.
1 change: 1 addition & 0 deletions src/dispatch/static/dispatch/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ declare module '@vue/runtime-core' {
MonacoEditor: typeof import('./src/components/MonacoEditor.vue')['default']
NotificationSnackbarsWrapper: typeof import('./src/components/NotificationSnackbarsWrapper.vue')['default']
PageHeader: typeof import('./src/components/PageHeader.vue')['default']
ParticipantSelect: typeof import('./src/components/ParticipantSelect.vue')['default']
Refresh: typeof import('./src/components/Refresh.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
Expand Down
2 changes: 1 addition & 1 deletion src/dispatch/static/dispatch/src/case/DetailsTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ import CaseSeveritySelect from "@/case/severity/CaseSeveritySelect.vue"
import CaseTypeSelect from "@/case/type/CaseTypeSelect.vue"
import DateTimePickerMenu from "@/components/DateTimePickerMenu.vue"
import IncidentFilterCombobox from "@/incident/IncidentFilterCombobox.vue"
import ParticipantSelect from "@/incident/ParticipantSelect.vue"
import ParticipantSelect from "@/components/ParticipantSelect.vue"
import ProjectSelect from "@/project/ProjectSelect.vue"
import TagFilterAutoComplete from "@/tag/TagFilterAutoComplete.vue"
Expand Down
2 changes: 1 addition & 1 deletion src/dispatch/static/dispatch/src/case/HandoffDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import { mapFields } from "vuex-map-fields"
import { mapActions } from "vuex"
import ParticipantSelect from "@/incident/ParticipantSelect.vue"
import ParticipantSelect from "@/components/ParticipantSelect.vue"
export default {
name: "CaseHandoffDialog",
Expand Down
127 changes: 0 additions & 127 deletions src/dispatch/static/dispatch/src/case/ParticipantSelect.vue

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ import ProjectCombobox from "@/project/ProjectCombobox.vue"
import RouterUtils from "@/router/utils"
import SearchUtils from "@/search/utils"
import TagFilterAutoComplete from "@/tag/TagFilterAutoComplete.vue"
import ParticipantSelect from "@/incident/ParticipantSelect.vue"
import ParticipantSelect from "@/components/ParticipantSelect.vue"
let today = function () {
let now = new Date()
Expand Down
2 changes: 1 addition & 1 deletion src/dispatch/static/dispatch/src/incident/DetailsTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ import IncidentFilterCombobox from "@/incident/IncidentFilterCombobox.vue"
import IncidentPrioritySelect from "@/incident/priority/IncidentPrioritySelect.vue"
import IncidentSeveritySelect from "@/incident/severity/IncidentSeveritySelect.vue"
import IncidentTypeSelect from "@/incident/type/IncidentTypeSelect.vue"
import ParticipantSelect from "@/incident/ParticipantSelect.vue"
import ParticipantSelect from "@/components/ParticipantSelect.vue"
import ProjectSelect from "@/project/ProjectSelect.vue"
import TagFilterAutoComplete from "@/tag/TagFilterAutoComplete.vue"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
import { mapFields } from "vuex-map-fields"
import { mapActions } from "vuex"
import ParticipantSelect from "@/incident/ParticipantSelect.vue"
import ParticipantSelect from "@/components/ParticipantSelect.vue"
export default {
name: "IncidentHandoffDialog",
Expand Down
128 changes: 0 additions & 128 deletions src/dispatch/static/dispatch/src/incident/ParticipantSelect.vue

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ import IncidentTypeCombobox from "@/incident/type/IncidentTypeCombobox.vue"
import ProjectCombobox from "@/project/ProjectCombobox.vue"
import TagFilterAutoComplete from "@/tag/TagFilterAutoComplete.vue"
import TagTypeFilterCombobox from "@/tag_type/TagTypeFilterCombobox.vue"
import ParticipantSelect from "@/incident/ParticipantSelect.vue"
import ParticipantSelect from "@/components/ParticipantSelect.vue"
export default {
name: "IncidentTableFilterDialog",
Expand Down
2 changes: 1 addition & 1 deletion src/dispatch/static/dispatch/src/task/NewEditSheet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ import { mapActions } from "vuex"
import ProjectSelect from "@/project/ProjectSelect.vue"
import IncidentSelect from "@/incident/IncidentSelect.vue"
import ParticipantSelect from "@/incident/ParticipantSelect.vue"
import ParticipantSelect from "@/components/ParticipantSelect.vue"
import AssigneeCombobox from "@/task/AssigneeCombobox.vue"
import DateTimePickerMenu from "@/components/DateTimePickerMenu.vue"
Expand Down

0 comments on commit 67efcd8

Please sign in to comment.