kuzzle-admin-console
kuzzle-admin-console copied to clipboard
Can't resize the columns in column view, some data are hidden
Can't resize the columns in column view, some data are hidden
Not sure that data are hidden The columns width is set to minimal size to allow user see all data contained in cell The table width is increase by adding columns and allow to scroll horizontally
Yes, I've noticed it. Maybe, we could still keep this feature-request as a "nice-to-have".
I found it in src/components/Data/Documents/Views/Column.vue
line 222, value: JSON.stringify(ret).substring(0, 10),
We display only 10 first char of the string containing the data to display et set ...
next to if we cutted
We did it to prevent for very long strig for example some text fields
oh... Not good. We should really use the CSS ellipsis rule to adapt the text clipping to the column size.
do not make the column resizable, just set a column maximum width (should be calculated with the window total width) and use word-wrap
to restrict content size .