@linzjs/step-ag-grid 7.5.0 → 7.5.1

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
@@ -2,7 +2,7 @@
2
2
  "name": "@linzjs/step-ag-grid",
3
3
  "repository": "github:linz/step-ag-grid.git",
4
4
  "license": "MIT",
5
- "version": "7.5.0",
5
+ "version": "7.5.1",
6
6
  "keywords": [
7
7
  "aggrid",
8
8
  "ag-grid",
@@ -300,8 +300,8 @@ export const GridFormDropDown = <RowType extends GridBaseRow>(props: GridFormPop
300
300
  }
301
301
  }}
302
302
  >
303
- {(item.label ?? (item.value == null ? `<${item.value}>` : `${item.value}`)) +
304
- (item.subComponent ? "..." : "")}
303
+ {item.label ?? (item.value == null ? `<${item.value}>` : `${item.value}`)}
304
+ {item.subComponent ? "..." : ""}
305
305
  </MenuItem>
306
306
 
307
307
  {item.subComponent && selectedSubComponent === item && (