diff --git a/frontend/src/lib/components/apps/editor/componentsPanel/CssProperty.svelte b/frontend/src/lib/components/apps/editor/componentsPanel/CssProperty.svelte
index 972754eddb063..1c4f280c87263 100644
--- a/frontend/src/lib/components/apps/editor/componentsPanel/CssProperty.svelte
+++ b/frontend/src/lib/components/apps/editor/componentsPanel/CssProperty.svelte
@@ -30,8 +30,8 @@
tooltip?: string | undefined
shouldDisplayLeft?: boolean
shouldDisplayRight?: boolean
- overriden?: boolean
- overridding?: boolean
+ overridden?: boolean
+ overriding?: boolean
wmClass?: string | undefined
}
@@ -45,8 +45,8 @@
tooltip = undefined,
shouldDisplayLeft = false,
shouldDisplayRight = false,
- overriden = false,
- overridding = false,
+ overridden = false,
+ overriding = false,
wmClass = undefined
}: Props = $props()
@@ -143,9 +143,9 @@
Plain CSS
- {#if overriden}
- Overriden by local
- {:else if overridding}
+ {#if overridden}
+ Overridden by local
+ {:else if overriding}
Overriding global
{/if}
{#if quickStyleProperties?.length}
diff --git a/frontend/src/lib/components/apps/editor/settingsPanel/CssPropertyWrapper.svelte b/frontend/src/lib/components/apps/editor/settingsPanel/CssPropertyWrapper.svelte
index de964e31d0f91..169aaf719c88e 100644
--- a/frontend/src/lib/components/apps/editor/settingsPanel/CssPropertyWrapper.svelte
+++ b/frontend/src/lib/components/apps/editor/settingsPanel/CssPropertyWrapper.svelte
@@ -7,8 +7,8 @@
forceClass?: boolean
id: string
property?: ComponentCssProperty | undefined
- overriden?: boolean
- overridding?: boolean
+ overridden?: boolean
+ overriding?: boolean
wmClass?: string | undefined
}
@@ -17,8 +17,8 @@
forceClass = false,
id,
property = $bindable(undefined),
- overriden = false,
- overridding = false,
+ overridden = false,
+ overriding = false,
wmClass = undefined
}: Props = $props()
@@ -38,8 +38,8 @@
shouldDisplayLeft={hasValues(property[id])}
on:left
on:right
- {overriden}
- {overridding}
+ {overridden}
+ {overriding}
{wmClass}
/>
{/if}
diff --git a/frontend/src/lib/components/apps/editor/settingsPanel/StylePanel.svelte b/frontend/src/lib/components/apps/editor/settingsPanel/StylePanel.svelte
index 4dea82c4c18d6..ca3739d34018e 100644
--- a/frontend/src/lib/components/apps/editor/settingsPanel/StylePanel.svelte
+++ b/frontend/src/lib/components/apps/editor/settingsPanel/StylePanel.svelte
@@ -250,7 +250,7 @@
copyLocalToGlobal(name, component?.customCss?.[name])
tab = 'global'
}}
- overridding={hasStyleValue($app.css?.[component.type]?.[name]) &&
+ overriding={hasStyleValue($app.css?.[component.type]?.[name]) &&
hasStyleValue(component.customCss[name])}
/>
@@ -277,7 +277,7 @@
)
tab = 'local'
}}
- overriden={hasStyleValue(component.customCss[id])}
+ overridden={hasStyleValue(component.customCss[id])}
wmClass={getSelector(id)}
/>
{/if}
diff --git a/frontend/src/lib/script_helpers.ts b/frontend/src/lib/script_helpers.ts
index d05d78f6ef71a..077aaf59ad153 100644
--- a/frontend/src/lib/script_helpers.ts
+++ b/frontend/src/lib/script_helpers.ts
@@ -84,7 +84,7 @@ const NATIVETS_INIT_CODE = `// Fetch-only script, no imports allowed (except win
//import * as wmill from './windmill.ts'
export async function main(example_input: number = 3) {
- // "3" is the default value of example_input, it can be overriden with code or using the UI
+ // "3" is the default value of example_input, it can be overridden with code or using the UI
const res = await fetch(\`https://jsonplaceholder.typicode.com/todos/\${example_input}\`, {
headers: { "Content-Type": "application/json" },
});
@@ -101,7 +101,7 @@ const BUNNATIVE_INIT_CODE = `//native
//import * as wmill from "windmill-client"
export async function main(example_input: number = 3) {
- // "3" is the default value of example_input, it can be overriden with code or using the UI
+ // "3" is the default value of example_input, it can be overridden with code or using the UI
const res = await fetch(\`https://jsonplaceholder.typicode.com/todos/\${example_input}\`, {
headers: { "Content-Type": "application/json" },
});