Skip to content

Commit d596b68

Browse files
committed
Fix add protocolDestination and calculation parcels in AdminUI.
1 parent f449481 commit d596b68

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/AdminUI/src/components/TagsTab.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -852,6 +852,7 @@
852852
853853
const closeEditTag = () => {
854854
dialogEditTag.value = false
855+
fetchTags()
855856
}
856857
857858
const closeDeleteTag = () => {
@@ -972,12 +973,12 @@
972973
}
973974
974975
const addNewProtocolDestination = async () => {
975-
editedTag.protocolDestinations.push(newProtocolDestination.value)
976+
editedTag.value.protocolDestinations.push(newProtocolDestination.value)
976977
dialogAddProtocolDestination.value = false
977978
}
978979
979980
const addNewParcel = async () => {
980-
editedTag.parcels.push(newParcel.value)
981+
editedTag.value.parcels.push(newParcel.value)
981982
dialogAddParcel.value = false
982983
}
983984

0 commit comments

Comments
 (0)