Skip to content

Commit 10116e7

Browse files
committed
fix: restore missing jsx
1 parent b16badb commit 10116e7

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { RefreshIndicator } from "@mendix/widget-plugin-component-kit/RefreshIndicator";
21
import { observer } from "mobx-react-lite";
32
import { ReactNode } from "react";
43
import { useLoaderViewModel } from "../model/hooks/injection-hooks";
@@ -8,5 +7,11 @@ export const RefreshStatus = observer(function RefreshStatus(): ReactNode {
87

98
if (!loaderVM.showRefreshIndicator) return null;
109

11-
return loaderVM.isRefreshing ? <RefreshIndicator /> : null;
10+
return loaderVM.isRefreshing ? (
11+
<div className="tr" role="row">
12+
<div className={"th mx-refresh-container"}>
13+
<progress className="mx-refresh-indicator" />
14+
</div>
15+
</div>
16+
) : null;
1217
});

0 commit comments

Comments
 (0)