mirror of
https://github.com/apache/superset.git
synced 2026-04-10 20:06:13 +00:00
chore: fix explore pills (#19866)
* chore: fix explore pills * fix tests * address comments * add test and remove redundant div * switch to dark text
This commit is contained in:
@@ -127,13 +127,7 @@ export const RowCount = ({
|
||||
}: {
|
||||
data?: Record<string, any>[];
|
||||
loading: boolean;
|
||||
}) => (
|
||||
<RowCountLabel
|
||||
rowcount={data?.length ?? 0}
|
||||
loading={loading}
|
||||
suffix={t('rows retrieved')}
|
||||
/>
|
||||
);
|
||||
}) => <RowCountLabel rowcount={data?.length ?? 0} loading={loading} />;
|
||||
|
||||
enum FormatPickerValue {
|
||||
Formatted,
|
||||
|
||||
Reference in New Issue
Block a user