We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f449481 commit d596b68Copy full SHA for d596b68
src/AdminUI/src/components/TagsTab.vue
@@ -852,6 +852,7 @@
852
853
const closeEditTag = () => {
854
dialogEditTag.value = false
855
+ fetchTags()
856
}
857
858
const closeDeleteTag = () => {
@@ -972,12 +973,12 @@
972
973
974
975
const addNewProtocolDestination = async () => {
- editedTag.protocolDestinations.push(newProtocolDestination.value)
976
+ editedTag.value.protocolDestinations.push(newProtocolDestination.value)
977
dialogAddProtocolDestination.value = false
978
979
980
const addNewParcel = async () => {
- editedTag.parcels.push(newParcel.value)
981
+ editedTag.value.parcels.push(newParcel.value)
982
dialogAddParcel.value = false
983
984
0 commit comments