Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
Signed-off-by: Muhammad Mikaal S. Anwar <[email protected]>
  • Loading branch information
mikaalanwar committed Nov 15, 2023
1 parent a172d3b commit 1f6f6a3
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,8 @@ export class TableDetail extends React.Component<
}

render() {
const { isLoading, statusCode, tableData, notices } = this.props;
const { isLoading, isLoadingNotices, statusCode, tableData, notices } =
this.props;
const { sortedBy, currentTab, isRightPanelOpen, selectedColumnDetails } =
this.state;
let innerContent: React.ReactNode;
Expand Down Expand Up @@ -754,12 +755,9 @@ export class TableDetail extends React.Component<
</header>
<div className="single-column-layout">
<aside className="left-panel">
{
/* prettier-ignore */
!this.props.isLoadingNotices && (
{!isLoadingNotices && (
<AlertList notices={aggregatedTableNotices} />
)
}
)}
<EditableSection
title={Constants.DESCRIPTION_TITLE}
readOnly={!data.is_editable}
Expand Down

0 comments on commit 1f6f6a3

Please sign in to comment.