Explorar o código

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

Owen Diffey %!s(int64=3) %!d(string=hai) anos
pai
achega
d3411f271b
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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;
 				});