pcm-shared-components 0.0.101 → 0.0.102

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.
@@ -119,7 +119,7 @@ export const GenericDialogWindow = props => {
119
119
  if (appBarMenu && appBarMenu.mainMenu && appBarMenu.mainMenu.length > 0) {
120
120
  setManagedAppBarMenu({ ...appBarMenu,
121
121
  mainMenu: [...appBarMenu.mainMenu.map(mm => {
122
- if (mm.id === 'save') {
122
+ if (mm.id && mm.id === 'save') {
123
123
  return { ...mm,
124
124
  onClick: onSave,
125
125
  name: save_button_label ? save_button_label : mm.name,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pcm-shared-components",
3
- "version": "0.0.101",
3
+ "version": "0.0.102",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "babel": {