From db337a5cd5843f4ee517d905ade3b12fbd71385c Mon Sep 17 00:00:00 2001 From: Miodec Date: Thu, 8 Jul 2021 23:26:56 +0100 Subject: [PATCH] changed property name --- src/js/popups/edit-tags-popup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/popups/edit-tags-popup.js b/src/js/popups/edit-tags-popup.js index f4f1ea64d..3e0385bd7 100644 --- a/src/js/popups/edit-tags-popup.js +++ b/src/js/popups/edit-tags-popup.js @@ -89,7 +89,7 @@ async function apply() { } else { Notifications.add("Tag added", 1); DB.getSnapshot().tags.push({ - name: inputVal, + name: response.data.name, id: response.data.id, }); ResultTagsPopup.updateButtons();