@citizenplane/pimp 9.15.3 → 9.15.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@citizenplane/pimp",
3
- "version": "9.15.3",
3
+ "version": "9.15.4",
4
4
  "scripts": {
5
5
  "dev": "storybook dev -p 8080",
6
6
  "build-storybook": "storybook build --output-dir ./docs",
@@ -503,6 +503,8 @@ const getColumnStyle = (column: CpTableColumnObject, idx: number) => {
503
503
 
504
504
  if (!hasAFullWidthColumnVisible.value && isLastColumn(idx)) {
505
505
  width = `${FULL_WIDTH_SIZE}px`
506
+ } else if (column.isFull) {
507
+ width = `${FULL_WIDTH_SIZE}px`
506
508
  } else if (column.width) {
507
509
  width = `${column.width}px`
508
510
  }