This repository was archived by the owner on Sep 3, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 8 files changed +16
-10
lines changed
Expand file tree Collapse file tree 8 files changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -77,4 +77,4 @@ class IncidentPriorityReadMinimal(DispatchBase):
7777
7878class IncidentPriorityPagination (DispatchBase ):
7979 total : int
80- items : List [IncidentPriorityReadMinimal ] = []
80+ items : List [IncidentPriorityRead ] = []
Original file line number Diff line number Diff line change @@ -71,4 +71,4 @@ class IncidentSeverityReadMinimal(DispatchBase):
7171
7272class IncidentSeverityPagination (DispatchBase ):
7373 total : int
74- items : List [IncidentSeverityReadMinimal ] = []
74+ items : List [IncidentSeverityRead ] = []
Original file line number Diff line number Diff line change @@ -123,4 +123,4 @@ class IncidentTypeReadMinimal(DispatchBase):
123123
124124class IncidentTypePagination (DispatchBase ):
125125 total : int
126- items : List [IncidentTypeReadMinimal ] = []
126+ items : List [IncidentTypeRead ] = []
Original file line number Diff line number Diff line change @@ -45,4 +45,4 @@ class ParticipantRoleReadMinimal(ParticipantRoleRead):
4545
4646class ParticipantRolePagination (ParticipantRoleBase ):
4747 total : int
48- items : List [ParticipantRoleReadMinimal ] = []
48+ items : List [ParticipantRoleRead ] = []
Original file line number Diff line number Diff line change 2727 </template >
2828 <template v-slot :selection =" { item , index } " >
2929 <v-chip close @click:close =" value.splice(index, 1)" >
30- <span v-if =" item.tag_type" > {{ item.tag_type.name }}/ </span >
30+ <span v-if =" item.tag_type" >
31+ <span v-if =" !project" >{{ item.project.name }}/</span >{{ item.tag_type.name }}/
32+ </span >
3133 <a :href =" item.uri" target =" _blank" :title =" item.description" >
3234 {{ item.name }}
3335 </a >
3436 </v-chip >
3537 </template >
3638 <template v-slot :item =" data " >
3739 <v-list-item-content >
38- <v-list-item-title > {{ data.item.tag_type.name }}/{{ data.item.name }} </v-list-item-title >
40+ <v-list-item-title >
41+ <span v-if =" !project" >{{ data.item.project.name }}/</span >{{ data.item.tag_type.name }}/{{
42+ data.item.name
43+ }}
44+ </v-list-item-title >
3945 <v-list-item-subtitle style =" width : 200px " class =" text-truncate" >
4046 {{ data.item.description }}
4147 </v-list-item-subtitle >
Original file line number Diff line number Diff line change 3232 </template >
3333 <template v-slot :item =" data " >
3434 <v-list-item-content >
35- <v-list-item-title > {{ data.item.name }} </v-list-item-title >
35+ <v-list-item-title > {{ data.item.project.name }}/{{ data.item. name }} </v-list-item-title >
3636 <v-list-item-subtitle style =" width : 200px " class =" text-truncate" >
3737 {{ data.item.description }}
3838 </v-list-item-subtitle >
Original file line number Diff line number Diff line change @@ -64,9 +64,9 @@ class TagReadMinimal(DispatchBase):
6464 uri : Optional [str ] = Field (None , nullable = True )
6565 discoverable : Optional [bool ] = True
6666 description : Optional [str ] = Field (None , nullable = True )
67- tag_type : Optional [TagTypeReadMinimal ]
67+ tag_type : Optional [TagTypeRead ]
6868
6969
7070class TagPagination (DispatchBase ):
71- items : List [TagReadMinimal ]
71+ items : List [TagRead ]
7272 total : int
Original file line number Diff line number Diff line change @@ -48,5 +48,5 @@ class TagTypeReadMinimal(DispatchBase):
4848
4949
5050class TagTypePagination (DispatchBase ):
51- items : List [TagTypeReadMinimal ]
51+ items : List [TagTypeRead ]
5252 total : int
You can’t perform that action at this time.
0 commit comments