Allow table columns to be resized smaller

This commit is contained in:
rijkvanzanten
2020-09-30 16:43:49 -04:00
parent b52e0431b8
commit ac85a6fa87

View File

@@ -198,7 +198,7 @@ export default defineComponent({
if (existing.value === dragHeader.value?.value) {
return {
...existing,
width: Math.max(50, newWidth),
width: Math.max(32, newWidth),
};
}