File tree 1 file changed +16
-14
lines changed
src/components/IndexTable
1 file changed +16
-14
lines changed Original file line number Diff line number Diff line change @@ -604,20 +604,22 @@ const loadingMarkup = computed(() => {
604
604
loading ?.value && styles .LoadingPanelEntered ,
605
605
)
606
606
},
607
- () => h (
608
- ' div' ,
609
- { class: styles .LoadingPanelRow },
610
- [
611
- h (Spinner , { size: ' small' }),
612
- h (
613
- ' span' ,
614
- { class: styles .LoadingPanelText },
615
- i18n .translate (' Polaris.IndexTable.resourceLoadingAccessibilityLabel' , {
616
- resourceNamePlural: contextResourceName .plural .toLocaleLowerCase (),
617
- }),
618
- ),
619
- ],
620
- ),
607
+ [
608
+ h (
609
+ ' div' ,
610
+ { class: styles .LoadingPanelRow },
611
+ [
612
+ h (Spinner , { size: ' small' }),
613
+ h (
614
+ ' span' ,
615
+ { class: styles .LoadingPanelText },
616
+ i18n .translate (' Polaris.IndexTable.resourceLoadingAccessibilityLabel' , {
617
+ resourceNamePlural: contextResourceName .plural .toLocaleLowerCase (),
618
+ }),
619
+ ),
620
+ ],
621
+ ),
622
+ ]
621
623
);
622
624
});
623
625
You can’t perform that action at this time.
0 commit comments