This is an automated email from the ASF dual-hosted git repository.

akshat pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/master by this push:
     new 7a1d83bb272 Fix some typos in web-console (#18808)
7a1d83bb272 is described below

commit 7a1d83bb272da45c0e066ec8717aee212c049ade
Author: Akshat Jain <[email protected]>
AuthorDate: Thu Dec 4 13:21:13 2025 +0530

    Fix some typos in web-console (#18808)
---
 .../components/header-bar/__snapshots__/header-bar.spec.tsx.snap    | 2 +-
 web-console/src/components/header-bar/header-bar.tsx                | 6 +++---
 .../__snapshots__/show-json-or-stages.spec.tsx.snap                 | 2 +-
 .../src/components/show-json-or-stages/show-json-or-stages.tsx      | 2 +-
 .../src/components/show-json/__snapshots__/show-json.spec.tsx.snap  | 2 +-
 web-console/src/components/show-json/show-json.tsx                  | 2 +-
 .../__snapshots__/segment-table-action-dialog.spec.tsx.snap         | 2 +-
 .../__snapshots__/supervisor-table-action-dialog.spec.tsx.snap      | 2 +-
 .../__snapshots__/task-table-action-dialog.spec.tsx.snap            | 2 +-
 9 files changed, 11 insertions(+), 11 deletions(-)

diff --git 
a/web-console/src/components/header-bar/__snapshots__/header-bar.spec.tsx.snap 
b/web-console/src/components/header-bar/__snapshots__/header-bar.spec.tsx.snap
index 49866cc0839..3d6e080fdcb 100644
--- 
a/web-console/src/components/header-bar/__snapshots__/header-bar.spec.tsx.snap
+++ 
b/web-console/src/components/header-bar/__snapshots__/header-bar.spec.tsx.snap
@@ -292,7 +292,7 @@ exports[`HeaderBar matches snapshot 1`] = `
             multiline={false}
             popoverProps={{}}
             shouldDismissPopover={true}
-            text="Capabilty detection"
+            text="Capability detection"
           >
             <Blueprint5.MenuItem
               active={false}
diff --git a/web-console/src/components/header-bar/header-bar.tsx 
b/web-console/src/components/header-bar/header-bar.tsx
index d2e2bb23b13..42ba794e65d 100644
--- a/web-console/src/components/header-bar/header-bar.tsx
+++ b/web-console/src/components/header-bar/header-bar.tsx
@@ -204,13 +204,13 @@ export const HeaderBar = React.memo(function 
HeaderBar(props: HeaderBarProps) {
       <MenuDivider />
       <MenuItem
         icon={IconNames.HIGH_PRIORITY}
-        text="Capabilty detection"
+        text="Capability detection"
         intent={capabilitiesOverride ? Intent.DANGER : undefined}
       >
         {capabilitiesOverride && (
           <>
             <MenuItem
-              text="Use automatic capabilty detection"
+              text="Use automatic capability detection"
               onClick={() => setCapabilitiesOverride(undefined)}
               intent={Intent.PRIMARY}
             />
@@ -380,7 +380,7 @@ export const HeaderBar = React.memo(function 
HeaderBar(props: HeaderBarProps) {
           >
             <Button
               icon={IconNames.HIGH_PRIORITY}
-              text="Manual capabilty detection"
+              text="Manual capability detection"
               intent={Intent.DANGER}
               minimal
             />
diff --git 
a/web-console/src/components/show-json-or-stages/__snapshots__/show-json-or-stages.spec.tsx.snap
 
b/web-console/src/components/show-json-or-stages/__snapshots__/show-json-or-stages.spec.tsx.snap
index 5110584105c..c3ee72d84fc 100644
--- 
a/web-console/src/components/show-json-or-stages/__snapshots__/show-json-or-stages.spec.tsx.snap
+++ 
b/web-console/src/components/show-json-or-stages/__snapshots__/show-json-or-stages.spec.tsx.snap
@@ -19,7 +19,7 @@ exports[`ShowJsonOrStages matches snapshot 1`] = `
         <span
           class="bp5-button-text"
         >
-          Refesh
+          Refresh
         </span>
       </button>
       <button
diff --git 
a/web-console/src/components/show-json-or-stages/show-json-or-stages.tsx 
b/web-console/src/components/show-json-or-stages/show-json-or-stages.tsx
index 6d15330c431..216b04ec979 100644
--- a/web-console/src/components/show-json-or-stages/show-json-or-stages.tsx
+++ b/web-console/src/components/show-json-or-stages/show-json-or-stages.tsx
@@ -70,7 +70,7 @@ export const ShowJsonOrStages = React.memo(function 
ShowJsonOrStages(props: Show
         <ButtonGroup className="right-buttons">
           <Button
             disabled={jsonState.loading}
-            text="Refesh"
+            text="Refresh"
             minimal
             onClick={() => queryManager.rerunLastQuery()}
           />
diff --git 
a/web-console/src/components/show-json/__snapshots__/show-json.spec.tsx.snap 
b/web-console/src/components/show-json/__snapshots__/show-json.spec.tsx.snap
index a52424f9cba..34c7cde2c88 100644
--- a/web-console/src/components/show-json/__snapshots__/show-json.spec.tsx.snap
+++ b/web-console/src/components/show-json/__snapshots__/show-json.spec.tsx.snap
@@ -19,7 +19,7 @@ exports[`ShowJson matches snapshot 1`] = `
         <span
           class="bp5-button-text"
         >
-          Refesh
+          Refresh
         </span>
       </button>
       <button
diff --git a/web-console/src/components/show-json/show-json.tsx 
b/web-console/src/components/show-json/show-json.tsx
index c54e8938591..be949de28c7 100644
--- a/web-console/src/components/show-json/show-json.tsx
+++ b/web-console/src/components/show-json/show-json.tsx
@@ -55,7 +55,7 @@ export const ShowJson = React.memo(function ShowJson(props: 
ShowJsonProps) {
         <ButtonGroup className="right-buttons">
           <Button
             disabled={jsonState.loading}
-            text="Refesh"
+            text="Refresh"
             minimal
             onClick={() => queryManager.rerunLastQuery()}
           />
diff --git 
a/web-console/src/dialogs/segments-table-action-dialog/__snapshots__/segment-table-action-dialog.spec.tsx.snap
 
b/web-console/src/dialogs/segments-table-action-dialog/__snapshots__/segment-table-action-dialog.spec.tsx.snap
index 5926054f5c9..65735ec62a5 100644
--- 
a/web-console/src/dialogs/segments-table-action-dialog/__snapshots__/segment-table-action-dialog.spec.tsx.snap
+++ 
b/web-console/src/dialogs/segments-table-action-dialog/__snapshots__/segment-table-action-dialog.spec.tsx.snap
@@ -142,7 +142,7 @@ exports[`SegmentTableActionDialog matches snapshot 1`] = `
                     <span
                       class="bp5-button-text"
                     >
-                      Refesh
+                      Refresh
                     </span>
                   </button>
                   <button
diff --git 
a/web-console/src/dialogs/supervisor-table-action-dialog/__snapshots__/supervisor-table-action-dialog.spec.tsx.snap
 
b/web-console/src/dialogs/supervisor-table-action-dialog/__snapshots__/supervisor-table-action-dialog.spec.tsx.snap
index b35c08f23cc..ee93c8fd622 100755
--- 
a/web-console/src/dialogs/supervisor-table-action-dialog/__snapshots__/supervisor-table-action-dialog.spec.tsx.snap
+++ 
b/web-console/src/dialogs/supervisor-table-action-dialog/__snapshots__/supervisor-table-action-dialog.spec.tsx.snap
@@ -196,7 +196,7 @@ exports[`SupervisorTableActionDialog matches snapshot 1`] = 
`
                     <span
                       class="bp5-button-text"
                     >
-                      Refesh
+                      Refresh
                     </span>
                   </button>
                   <button
diff --git 
a/web-console/src/dialogs/task-table-action-dialog/__snapshots__/task-table-action-dialog.spec.tsx.snap
 
b/web-console/src/dialogs/task-table-action-dialog/__snapshots__/task-table-action-dialog.spec.tsx.snap
index 0e92f7194af..dfc81fe523f 100644
--- 
a/web-console/src/dialogs/task-table-action-dialog/__snapshots__/task-table-action-dialog.spec.tsx.snap
+++ 
b/web-console/src/dialogs/task-table-action-dialog/__snapshots__/task-table-action-dialog.spec.tsx.snap
@@ -196,7 +196,7 @@ exports[`TaskTableActionDialog matches snapshot 1`] = `
                     <span
                       class="bp5-button-text"
                     >
-                      Refesh
+                      Refresh
                     </span>
                   </button>
                   <button


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to