We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0172235 commit af3b68cCopy full SHA for af3b68c
packages/pluggableWidgets/datagrid-web/src/components/Widget.tsx
@@ -157,7 +157,10 @@ const Main = observer(<C extends GridColumn>(props: WidgetProps<C>): ReactElemen
157
) : null;
158
159
const selectionCount =
160
- selectionCountStore.selectedCount > 0 && selectionCountPosition !== "off" && selectionCountPosition ? (
+ selectionCountStore.selectedCount > 0 &&
161
+ selectActionHelper.selectionType === "Multi" &&
162
+ selectionCountPosition !== "off" &&
163
+ selectionCountPosition ? (
164
<SelectionCounter location={selectionCountPosition} />
165
166
0 commit comments