@applica-software-guru/react-admin 1.5.319 → 1.5.320

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
@@ -107,5 +107,5 @@
107
107
  "type": "module",
108
108
  "types": "dist/index.d.ts",
109
109
  "typings": "dist/index.d.ts",
110
- "version": "1.5.319"
110
+ "version": "1.5.320"
111
111
  }
@@ -137,7 +137,7 @@ function Empty({
137
137
  ) : null)}
138
138
  </Box>
139
139
  <StyledToolbar className={EmptyClasses.toolbar}>
140
- {(canCreate ? <CreateButton disableFloatingButton /> : null) || actions}
140
+ {actions || (canCreate ? <CreateButton disableFloatingButton /> : null)}
141
141
  </StyledToolbar>
142
142
  </Root>
143
143
  );