mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 01:57:30 +00:00
refactor(gui): increase default column width
Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
@@ -327,7 +327,7 @@ export default {
|
||||
style() {
|
||||
let style = ''
|
||||
for (const c of this.availableColumns) {
|
||||
const val = (this.columnsWidth && this.columnsWidth[c.alias]) || (c.virtual ? '200px' : (columnStyling[c.uidt] && columnStyling[c.uidt].w))
|
||||
const val = (this.columnsWidth && this.columnsWidth[c.alias]) || (c.virtual ? '200px' : ((columnStyling[c.uidt] && columnStyling[c.uidt].w) || '150px'))
|
||||
if (val && c.key !== this.resizingCol) {
|
||||
style += `[data-col="${c.alias}"]{min-width:${val};max-width:${val};width: ${val};}`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user