We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b16badb commit 10116e7Copy full SHA for 10116e7
1 file changed
packages/pluggableWidgets/datagrid-web/src/components/RefreshStatus.tsx
@@ -1,4 +1,3 @@
1
-import { RefreshIndicator } from "@mendix/widget-plugin-component-kit/RefreshIndicator";
2
import { observer } from "mobx-react-lite";
3
import { ReactNode } from "react";
4
import { useLoaderViewModel } from "../model/hooks/injection-hooks";
@@ -8,5 +7,11 @@ export const RefreshStatus = observer(function RefreshStatus(): ReactNode {
8
7
9
if (!loaderVM.showRefreshIndicator) return null;
10
11
- return loaderVM.isRefreshing ? <RefreshIndicator /> : null;
+ return loaderVM.isRefreshing ? (
+ <div className="tr" role="row">
12
+ <div className={"th mx-refresh-container"}>
13
+ <progress className="mx-refresh-indicator" />
14
+ </div>
15
16
+ ) : null;
17
});
0 commit comments