Browse Source

fix(AdvancedTable): Locally stored column width can overwrite non-resizable

Owen Diffey 3 years ago
parent
commit
d3411f271b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frontend/src/components/AdvancedTable.vue

+ 1 - 1
frontend/src/components/AdvancedTable.vue

@@ -1068,7 +1068,7 @@ export default {
 					const columnWidth = tableSettings.columnWidths.find(
 						column => column.name === orderedColumn.name
 					)?.width;
-					if (columnWidth)
+					if (orderedColumn.resizable && columnWidth)
 						return { ...orderedColumn, width: columnWidth };
 					return orderedColumn;
 				});