Skip to content

Commit 9a9ee3b

Browse files
committed
RI-7250 - RDI---the-loading-message-is-not-aligned
1 parent 06e6020 commit 9a9ee3b

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

redisinsight/ui/src/pages/rdi/pipeline-management/pages/config/Config.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,7 @@ const Config = () => {
179179
className={cx('rdi__editorWrapper', 'rdi__loading')}
180180
data-testid="rdi-config-loading"
181181
>
182-
<Text color="subdued" style={{ marginBottom: 12 }}>
183-
Loading data...
184-
</Text>
185-
<Loader color="secondary" size="l" />
182+
<Loader color="secondary" size="l" loaderText='Loading data...' />
186183
</div>
187184
) : (
188185
<MonacoYaml

redisinsight/ui/src/pages/rdi/pipeline-management/pages/job/Job.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -239,10 +239,7 @@ const Job = (props: Props) => {
239239
className={cx('rdi__editorWrapper', 'rdi__loading')}
240240
data-testid="rdi-job-loading"
241241
>
242-
<Text color="subdued" style={{ marginBottom: 12 }}>
243-
Loading data...
244-
</Text>
245-
<Loader color="secondary" size="l" />
242+
<Loader color="secondary" size="l" loaderText="Loading data..." />
246243
</div>
247244
) : (
248245
<MonacoYaml

0 commit comments

Comments
 (0)