From 20b41b4cd7eb0e9afceb51109304a5d529a74f78 Mon Sep 17 00:00:00 2001 From: Marc Vilanova <39573146+mvilanova@users.noreply.github.com> Date: Tue, 18 Jan 2022 18:07:46 -0800 Subject: [PATCH] Reverts to IncidentRead in IncidentPagination Pydantic model (#1907) --- src/dispatch/incident/models.py | 2 +- src/dispatch/static/dispatch/src/incident/ParticipantsTab.vue | 3 ++- src/dispatch/static/dispatch/src/incident/TimelineTab.vue | 2 +- .../static/dispatch/src/incident/WorkflowInstanceTab.vue | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/dispatch/incident/models.py b/src/dispatch/incident/models.py index 85132c7abfc8..d1cbd66183cf 100644 --- a/src/dispatch/incident/models.py +++ b/src/dispatch/incident/models.py @@ -415,4 +415,4 @@ class IncidentPagination(DispatchBase): total: int itemsPerPage: int page: int - items: List[IncidentReadMinimal] = [] + items: List[IncidentRead] = [] diff --git a/src/dispatch/static/dispatch/src/incident/ParticipantsTab.vue b/src/dispatch/static/dispatch/src/incident/ParticipantsTab.vue index e9ed172d768f..09e109b67883 100644 --- a/src/dispatch/static/dispatch/src/incident/ParticipantsTab.vue +++ b/src/dispatch/static/dispatch/src/incident/ParticipantsTab.vue @@ -1,6 +1,6 @@