We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38f9671 commit d6b889fCopy full SHA for d6b889f
packages/compass-schema-validation/src/components/validation-states.tsx
@@ -8,6 +8,7 @@ import {
8
EmptyContent,
9
ErrorSummary,
10
Link,
11
+ SpinLoaderWithLabel,
12
WarningSummary,
13
css,
14
spacing,
@@ -227,6 +228,11 @@ export function ValidationStates({
227
228
/>
229
)}
230
<ValidationBanners editMode={editMode} />
231
+ {!isLoaded && (
232
+ <div className={loaderStyles}>
233
+ <SpinLoaderWithLabel progressText="Loading Validation" />
234
+ </div>
235
+ )}
236
{isLoaded && (
237
<>
238
{isZeroState && !isRulesGenerationInProgress && (
0 commit comments