Skip to content

Commit

Permalink
⛑️ Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Power-Maverick committed Nov 25, 2021
1 parent ef35fef commit ef32bd4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export class ListControl extends React.Component<IListControlProps, IListControl
return (
<Sticky stickyPosition={StickyPositionType.Footer} isScrollSynced={true}>
<div className={"footer"}>
<Label className={"footerLabel"}>{`${this.state._selectionCount} selected`}</Label>
{/* <Label className={"footerLabel"}>{`${this.state._selectionCount} selected`}</Label> */}
{savingStatusRow}
{unsavedChangedStatusRow}
<CommandBar className={"footerCmdBar"} farItems={this._cmdBarFarItems} items={this._cmdBarItems} />
Expand Down Expand Up @@ -188,7 +188,7 @@ export class ListControl extends React.Component<IListControlProps, IListControl
};

private renderCommandBarItems(isAutoSaveEnabled: boolean): ICommandBarItemProps[] {
if (isAutoSaveEnabled || this.state._isSaving) {
if (isAutoSaveEnabled) {
return [];
} else {
return [
Expand Down

0 comments on commit ef32bd4

Please sign in to comment.