From ac9708c77967946821b1b2cd1835707d287fc8d7 Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Mon, 25 Jul 2022 17:38:08 +0200 Subject: [PATCH] fix unlink tags --- ereuse_devicehub/static/js/main_inventory.build.js | 4 ++-- ereuse_devicehub/static/js/main_inventory.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ereuse_devicehub/static/js/main_inventory.build.js b/ereuse_devicehub/static/js/main_inventory.build.js index 1e1b21fd..7737a44c 100644 --- a/ereuse_devicehub/static/js/main_inventory.build.js +++ b/ereuse_devicehub/static/js/main_inventory.build.js @@ -216,7 +216,7 @@ function removeLot() { function removeTag() { const devices = TableController.getSelectedDevices(); - const devices_id = devices.map(dev => dev.data); + const devices_id = devices.map(dev => $(dev).attr('data')); if (devices_id.length == 1) { const url = "/inventory/tag/devices/".concat(devices_id[0], "/del/"); @@ -228,7 +228,7 @@ function removeTag() { function addTag() { const devices = TableController.getSelectedDevices(); - const devices_id = devices.map(dev => dev.data); + const devices_id = devices.map(dev => $(dev).attr('data')); if (devices_id.length == 1) { $("#addingTagModal .pol").hide(); diff --git a/ereuse_devicehub/static/js/main_inventory.js b/ereuse_devicehub/static/js/main_inventory.js index 9c9b8d0a..d80d6c66 100644 --- a/ereuse_devicehub/static/js/main_inventory.js +++ b/ereuse_devicehub/static/js/main_inventory.js @@ -207,7 +207,7 @@ function removeLot() { function removeTag() { const devices = TableController.getSelectedDevices(); - const devices_id = devices.map(dev => dev.data); + const devices_id = devices.map(dev => $(dev).attr("data")); if (devices_id.length == 1) { const url = `/inventory/tag/devices/${devices_id[0]}/del/`; window.location.href = url; @@ -218,7 +218,7 @@ function removeTag() { function addTag() { const devices = TableController.getSelectedDevices(); - const devices_id = devices.map(dev => dev.data); + const devices_id = devices.map(dev => $(dev).attr("data")); if (devices_id.length == 1) { $("#addingTagModal .pol").hide(); $("#addingTagModal .btn-primary").show();