From 9a92705890ae7a9c9a172abe8d5b1555055c4161 Mon Sep 17 00:00:00 2001 From: Florian Steffens Date: Tue, 12 Sep 2023 14:24:04 +0200 Subject: [PATCH] fix(design): don't hide last column in ncTable used in widgets - this is needed because in widgets we don't have the edit-option as last column Signed-off-by: Florian Steffens --- src/shared/components/ncTable/sections/CustomTable.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/components/ncTable/sections/CustomTable.vue b/src/shared/components/ncTable/sections/CustomTable.vue index 13bec244b..70cb28d8a 100644 --- a/src/shared/components/ncTable/sections/CustomTable.vue +++ b/src/shared/components/ncTable/sections/CustomTable.vue @@ -370,7 +370,7 @@ export default { padding-right: 16px; } - tr>td:last-child { + tr>td.sticky:last-child { // visibility: hidden; opacity: 0; }