orc-shared 5.9.0-dev.12 → 5.9.0-dev.13

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.
@@ -44,6 +44,7 @@ var Registry = function Registry(_ref) {
44
44
  var classes = useStyles();
45
45
  var created = formatDate(dateCreated);
46
46
  var lastModified = formatDate(lastModifiedDate);
47
+ 0;
47
48
  var registry = /*#__PURE__*/_react.default.createElement(_Box.default, {
48
49
  className: classes.registry,
49
50
  display: "flex",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orc-shared",
3
- "version": "5.9.0-dev.12",
3
+ "version": "5.9.0-dev.13",
4
4
  "description": "Shared code for Orckestra applications",
5
5
  "main": "./src/index.js",
6
6
  "exports": {
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  import InformationItem from "./MaterialUI/DataDisplay/PredefinedElements/InformationItem";
3
- import sharedMessages from "~/sharedMessages";
3
+ import sharedMessages from "../sharedMessages";
4
4
  import { useIntl } from "react-intl";
5
5
  import Box from "@material-ui/core/Box";
6
6
  import { makeStyles } from "@material-ui/core/styles";
@@ -19,7 +19,7 @@ const Registry = ({ dateCreated, createdBy, lastModifiedDate, lastModifiedBy, ad
19
19
 
20
20
  const created = formatDate(dateCreated);
21
21
  const lastModified = formatDate(lastModifiedDate);
22
-
22
+ 0;
23
23
  const registry = (
24
24
  <Box className={classes.registry} display="flex" flexDirection="column">
25
25
  {dateCreated !== undefined && <InformationItem label={sharedMessages.created} children={created} />}