Skip to content

Commit

Permalink
Update InstanceDetails.js
Browse files Browse the repository at this point in the history
  • Loading branch information
OleksandrHladchenko1 authored Jan 23, 2025
1 parent e1d574d commit dd61a77
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Instance/InstanceDetails/InstanceDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import React, {
import { useIntl, FormattedMessage } from 'react-intl';
import { useLocation } from 'react-router-dom';
import PropTypes from 'prop-types';
import { uniqueId } from 'lodash';

import {
AppIcon,
Expand Down Expand Up @@ -211,7 +212,7 @@ const InstanceDetails = forwardRef(({

{isConsortialHoldingsVisible && (
<ConsortialHoldings
key={instance?.id}
key={uniqueId(instance?.id)}
instance={instance}
prevInstanceId={prevInstanceId.current}
updatePrevInstanceId={updatePrevInstanceId}
Expand Down

0 comments on commit dd61a77

Please sign in to comment.