@luscii-healthtech/web-ui 27.5.3 → 27.6.0
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/dist/index.development.js +1 -1
- package/dist/index.development.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/web-ui.esm.js +1 -1
- package/dist/web-ui.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -4440,7 +4440,7 @@ const PageHeader = ({ navigation, breadcrumbs, dataTestId, accessories, isPollin
|
|
|
4440
4440
|
React__namespace.default.createElement(
|
|
4441
4441
|
"div",
|
|
4442
4442
|
{ className: "ui-flex ui-flex-row ui-items-center ui-gap-xxs" },
|
|
4443
|
-
React__namespace.default.createElement(PageTitle, { "data-test-id": `${dataTestId}-title` }, title),
|
|
4443
|
+
typeof title === "string" ? React__namespace.default.createElement(PageTitle, { "data-test-id": `${dataTestId}-title` }, title) : React__namespace.default.createElement(Box, { width: "full" }, title),
|
|
4444
4444
|
isPolling && React__namespace.default.createElement(LoadingIndicator, { asSpinner: true, className: "page-spinner", spinnerColor: "gray" })
|
|
4445
4445
|
),
|
|
4446
4446
|
accessories && React__namespace.default.createElement("div", { "data-test-id": "page-header-accessories" }, accessories)
|