@onehat/ui 0.3.382 → 0.3.383
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1345,7 +1345,7 @@ function TreeComponent(props) {
|
|
|
1345
1345
|
<ScrollView {...testProps('ScrollView')} flex={1} w="100%">
|
|
1346
1346
|
{!treeNodes?.length ?
|
|
1347
1347
|
<CenterBox>
|
|
1348
|
-
<NoRecordsFound text={noneFoundText} onRefresh={reloadTree} />
|
|
1348
|
+
{Repository.isLoading ? <Loading /> : <NoRecordsFound text={noneFoundText} onRefresh={reloadTree} />}
|
|
1349
1349
|
</CenterBox> :
|
|
1350
1350
|
treeNodes}
|
|
1351
1351
|
</ScrollView>
|