Skip to content

Commit

Permalink
fixing the loading issue (#680)
Browse files Browse the repository at this point in the history
  • Loading branch information
polatengin authored Feb 15, 2024
1 parent fe12edc commit 37dc674
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ class FeedbackItem extends React.Component<IFeedbackItemProps, IFeedbackItemStat
const hideFeedbackItems = this.props.hideFeedbackItems && (this.props.userIdRef !== getUserIdentity().id);
const curTimerState = this.props.timerState;
const originalColumnId = this.props.originalColumnId;
const originalColumnTitle = originalColumnId ? this.props.columns[originalColumnId].columnProperties.title : 'n/a';
const originalColumnTitle = originalColumnId ? this.props.columns[originalColumnId]?.columnProperties.title : 'n/a';
// showing `n/a` will be for older boards who don't have this property
const childrenIds = this.props.groupIds;
const isFocusModalHidden = this.props.isFocusModalHidden;
Expand Down

0 comments on commit 37dc674

Please sign in to comment.