Skip to content

Commit ef32bd4

Browse files
⛑️ Bug fix
1 parent ef35fef commit ef32bd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

FlexibleOrderingGrid/FlexibleOrderingGrid/extension/ListControl.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export class ListControl extends React.Component<IListControlProps, IListControl
133133
return (
134134
<Sticky stickyPosition={StickyPositionType.Footer} isScrollSynced={true}>
135135
<div className={"footer"}>
136-
<Label className={"footerLabel"}>{`${this.state._selectionCount} selected`}</Label>
136+
{/* <Label className={"footerLabel"}>{`${this.state._selectionCount} selected`}</Label> */}
137137
{savingStatusRow}
138138
{unsavedChangedStatusRow}
139139
<CommandBar className={"footerCmdBar"} farItems={this._cmdBarFarItems} items={this._cmdBarItems} />
@@ -188,7 +188,7 @@ export class ListControl extends React.Component<IListControlProps, IListControl
188188
};
189189

190190
private renderCommandBarItems(isAutoSaveEnabled: boolean): ICommandBarItemProps[] {
191-
if (isAutoSaveEnabled || this.state._isSaving) {
191+
if (isAutoSaveEnabled) {
192192
return [];
193193
} else {
194194
return [

0 commit comments

Comments
 (0)