@luscii-healthtech/web-ui 2.44.0 → 2.44.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.
@@ -1,6 +1,7 @@
1
1
  import React from "react";
2
2
  export interface Crumb {
3
3
  name: string;
4
+ key?: string;
4
5
  link?: string;
5
6
  }
6
7
  export interface BreadcrumbProps {
@@ -6138,9 +6138,10 @@ var Breadcrumbs = function Breadcrumbs(_ref) {
6138
6138
  var crumbs = _ref.crumbs;
6139
6139
  var breadcrumbItems = crumbs.map(function (_ref2) {
6140
6140
  var name = _ref2.name,
6141
- link = _ref2.link;
6141
+ link = _ref2.link,
6142
+ key = _ref2.key;
6142
6143
  return /*#__PURE__*/React__default.createElement("li", {
6143
- key: name,
6144
+ key: key || name,
6144
6145
  className: "flex flex-row items-center slash-split "
6145
6146
  }, link ? /*#__PURE__*/React__default.createElement(router.Link, {
6146
6147
  to: link