From 8643e69ad1bc0bd308371c7bbfd731f334576f2e Mon Sep 17 00:00:00 2001 From: mutantsan Date: Wed, 6 Mar 2024 18:49:56 +0200 Subject: [PATCH] fix: fix wide table css style, v2 --- ckanext/unfold/assets/js/unfold-init-jstree.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ckanext/unfold/assets/js/unfold-init-jstree.js b/ckanext/unfold/assets/js/unfold-init-jstree.js index 39246da..ee6f040 100644 --- a/ckanext/unfold/assets/js/unfold-init-jstree.js +++ b/ckanext/unfold/assets/js/unfold-init-jstree.js @@ -58,10 +58,10 @@ ckan.module("unfold-init-jstree", function ($, _) { columnWidth: "200px", columns: [ { width: 400, header: "Name" }, - { width: 100, header: "Size", value: "size", cellClass: "js-tree-col", headerClass: "js-tree-col", wideCellClass: "js-tree-col" }, - { width: 100, header: "Type", value: "type", cellClass: "js-tree-col", headerClass: "js-tree-col", wideCellClass: "js-tree-col" }, - { width: 100, header: "Format", value: "format", cellClass: "js-tree-col", headerClass: "js-tree-col", wideCellClass: "js-tree-col" }, - { width: 200, header: "Modified at", value: "modified_at", cellClass: "js-tree-col", headerClass: "js-tree-col", wideCellClass: "js-tree-col" } + { width: 100, header: "Size", value: "size", cellClass: "js-tree-col", wideCellClass: "js-tree-col" }, + { width: 100, header: "Type", value: "type", cellClass: "js-tree-col", wideCellClass: "js-tree-col" }, + { width: 100, header: "Format", value: "format", cellClass: "js-tree-col", wideCellClass: "js-tree-col" }, + { width: 200, header: "Modified at", value: "modified_at", cellClass: "js-tree-col", wideCellClass: "js-tree-col" } ], height: 700, },