Skip to content

Commit 7a1d83b

Browse files
authored
Fix some typos in web-console (#18808)
1 parent a7a49f6 commit 7a1d83b

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

web-console/src/components/header-bar/__snapshots__/header-bar.spec.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ exports[`HeaderBar matches snapshot 1`] = `
292292
multiline={false}
293293
popoverProps={{}}
294294
shouldDismissPopover={true}
295-
text="Capabilty detection"
295+
text="Capability detection"
296296
>
297297
<Blueprint5.MenuItem
298298
active={false}

web-console/src/components/header-bar/header-bar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,13 +204,13 @@ export const HeaderBar = React.memo(function HeaderBar(props: HeaderBarProps) {
204204
<MenuDivider />
205205
<MenuItem
206206
icon={IconNames.HIGH_PRIORITY}
207-
text="Capabilty detection"
207+
text="Capability detection"
208208
intent={capabilitiesOverride ? Intent.DANGER : undefined}
209209
>
210210
{capabilitiesOverride && (
211211
<>
212212
<MenuItem
213-
text="Use automatic capabilty detection"
213+
text="Use automatic capability detection"
214214
onClick={() => setCapabilitiesOverride(undefined)}
215215
intent={Intent.PRIMARY}
216216
/>
@@ -380,7 +380,7 @@ export const HeaderBar = React.memo(function HeaderBar(props: HeaderBarProps) {
380380
>
381381
<Button
382382
icon={IconNames.HIGH_PRIORITY}
383-
text="Manual capabilty detection"
383+
text="Manual capability detection"
384384
intent={Intent.DANGER}
385385
minimal
386386
/>

web-console/src/components/show-json-or-stages/__snapshots__/show-json-or-stages.spec.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ exports[`ShowJsonOrStages matches snapshot 1`] = `
1919
<span
2020
class="bp5-button-text"
2121
>
22-
Refesh
22+
Refresh
2323
</span>
2424
</button>
2525
<button

web-console/src/components/show-json-or-stages/show-json-or-stages.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export const ShowJsonOrStages = React.memo(function ShowJsonOrStages(props: Show
7070
<ButtonGroup className="right-buttons">
7171
<Button
7272
disabled={jsonState.loading}
73-
text="Refesh"
73+
text="Refresh"
7474
minimal
7575
onClick={() => queryManager.rerunLastQuery()}
7676
/>

web-console/src/components/show-json/__snapshots__/show-json.spec.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ exports[`ShowJson matches snapshot 1`] = `
1919
<span
2020
class="bp5-button-text"
2121
>
22-
Refesh
22+
Refresh
2323
</span>
2424
</button>
2525
<button

web-console/src/components/show-json/show-json.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export const ShowJson = React.memo(function ShowJson(props: ShowJsonProps) {
5555
<ButtonGroup className="right-buttons">
5656
<Button
5757
disabled={jsonState.loading}
58-
text="Refesh"
58+
text="Refresh"
5959
minimal
6060
onClick={() => queryManager.rerunLastQuery()}
6161
/>

web-console/src/dialogs/segments-table-action-dialog/__snapshots__/segment-table-action-dialog.spec.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ exports[`SegmentTableActionDialog matches snapshot 1`] = `
142142
<span
143143
class="bp5-button-text"
144144
>
145-
Refesh
145+
Refresh
146146
</span>
147147
</button>
148148
<button

web-console/src/dialogs/supervisor-table-action-dialog/__snapshots__/supervisor-table-action-dialog.spec.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ exports[`SupervisorTableActionDialog matches snapshot 1`] = `
196196
<span
197197
class="bp5-button-text"
198198
>
199-
Refesh
199+
Refresh
200200
</span>
201201
</button>
202202
<button

web-console/src/dialogs/task-table-action-dialog/__snapshots__/task-table-action-dialog.spec.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ exports[`TaskTableActionDialog matches snapshot 1`] = `
196196
<span
197197
class="bp5-button-text"
198198
>
199-
Refesh
199+
Refresh
200200
</span>
201201
</button>
202202
<button

0 commit comments

Comments
 (0)