Skip to content
Snippets Groups Projects
Commit fd08e4ea authored by David Bühler's avatar David Bühler
Browse files

[dome] Table: allows resizing columns down to 25 pixels.

parent 3cf1d015
No related branches found
No related tags found
No related merge requests found
...@@ -409,7 +409,7 @@ class TableState<Key, Row> { ...@@ -409,7 +409,7 @@ class TableState<Key, Row> {
const cwr = colws.get(rcol); const cwr = colws.get(rcol);
const wl = cwl ? cwl + offset : 0; const wl = cwl ? cwl + offset : 0;
const wr = cwr ? cwr - offset : 0; const wr = cwr ? cwr - offset : 0;
if (wl > 40 && wr > 40) { if (wl > 25 && wr > 25) {
const { resize } = this; const { resize } = this;
resize.set(lcol, wl); resize.set(lcol, wl);
resize.set(rcol, wr); resize.set(rcol, wr);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment