From 16d8dbb29beecb0e8f76a2ec49ccfeff97b3c545 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Wed, 3 May 2023 10:51:43 +0200 Subject: [PATCH] change wording around background script -> background runnable --- .../src/lib/components/apps/editor/AppInputs.svelte | 2 +- .../apps/editor/contextPanel/ContextPanel.svelte | 2 +- .../inlineScriptsPanel/InlineScriptsPanelList.svelte | 10 +++++----- .../script/shared/ScriptRunConfiguration.svelte | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/frontend/src/lib/components/apps/editor/AppInputs.svelte b/frontend/src/lib/components/apps/editor/AppInputs.svelte index 54205caa47..38329dbc2a 100644 --- a/frontend/src/lib/components/apps/editor/AppInputs.svelte +++ b/frontend/src/lib/components/apps/editor/AppInputs.svelte @@ -36,7 +36,7 @@ {#if $app?.hiddenInlineScripts?.length > 0} -
Background script inputs
+
Background runnable inputs
{#each $app?.hiddenInlineScripts ?? [] as script, index (script.name)}
diff --git a/frontend/src/lib/components/apps/editor/contextPanel/ContextPanel.svelte b/frontend/src/lib/components/apps/editor/contextPanel/ContextPanel.svelte index a44abe411b..15c9402a3f 100644 --- a/frontend/src/lib/components/apps/editor/contextPanel/ContextPanel.svelte +++ b/frontend/src/lib/components/apps/editor/contextPanel/ContextPanel.svelte @@ -66,7 +66,7 @@ {/each}
- Background scripts + Background runnables
diff --git a/frontend/src/lib/components/apps/editor/inlineScriptsPanel/InlineScriptsPanelList.svelte b/frontend/src/lib/components/apps/editor/inlineScriptsPanel/InlineScriptsPanelList.svelte index cc5fa95fb8..c9ec8d3ec2 100644 --- a/frontend/src/lib/components/apps/editor/inlineScriptsPanel/InlineScriptsPanelList.svelte +++ b/frontend/src/lib/components/apps/editor/inlineScriptsPanel/InlineScriptsPanelList.svelte @@ -156,13 +156,13 @@
- Background scripts + Background runnables - Background scripts are triggered upon global refresh or when their input changes. The - result of a background script can be shared among many components. + Background runnables are triggered upon global refresh or when their input changes. The + result of a background runnable can be shared among many components.