From d4d64973d29ba75dcb7386290cc4fa274ccf8585 Mon Sep 17 00:00:00 2001 From: Henri Courdent <122811744+hcourdent@users.noreply.github.com> Date: Tue, 28 May 2024 16:05:56 +0200 Subject: [PATCH] Links update & stroke width icons (#3833) * Links update & stroke width icons * Update frontend/src/lib/components/StringTypeNarrowing.svelte Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> --------- Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> --- frontend/src/lib/components/DisplayResult.svelte | 2 +- frontend/src/lib/components/S3FilePicker.svelte | 2 +- frontend/src/lib/components/StringTypeNarrowing.svelte | 2 +- .../apps/editor/componentsPanel/componentControlUtils.ts | 2 +- .../components/apps/editor/settingsPanel/Recompute.svelte | 2 +- .../settingsPanel/mainInput/RunnableSelector.svelte | 8 ++++---- frontend/src/lib/init_scripts/python_init_code.ts | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/frontend/src/lib/components/DisplayResult.svelte b/frontend/src/lib/components/DisplayResult.svelte index 67a43d1070..9c8bc39888 100644 --- a/frontend/src/lib/components/DisplayResult.svelte +++ b/frontend/src/lib/components/DisplayResult.svelte @@ -637,7 +637,7 @@ title="Large result detected" type="warning" tooltip="We recommend using persistent object storage for large result. See docs for setting up an object storage service integration using s3 or any other s3 compatible services." - documentationLink="https://www.windmill.dev/docs/core_concepts/persistent_storage#large-data-files-s3-r2-minio-azure-blob" + documentationLink="https://www.windmill.dev/docs/core_concepts/persistent_storage#object-storage-for-large-data-s3-r2-minio-azure-blob" /> {#if result && result != 'WINDMILL_TOO_BIG'} diff --git a/frontend/src/lib/components/S3FilePicker.svelte b/frontend/src/lib/components/S3FilePicker.svelte index 9e3b6efdca..347df44194 100644 --- a/frontend/src/lib/components/S3FilePicker.svelte +++ b/frontend/src/lib/components/S3FilePicker.svelte @@ -438,7 +438,7 @@
More info in Windmill's documentation
For large files, we recommend using the S3 Object type instead of the base64 string type. diff --git a/frontend/src/lib/components/apps/editor/componentsPanel/componentControlUtils.ts b/frontend/src/lib/components/apps/editor/componentsPanel/componentControlUtils.ts index 6eb3656f26..c8a6e06dbd 100644 --- a/frontend/src/lib/components/apps/editor/componentsPanel/componentControlUtils.ts +++ b/frontend/src/lib/components/apps/editor/componentsPanel/componentControlUtils.ts @@ -54,7 +54,7 @@ const clearFiles = { title: 'clearFiles', description: 'Clear the files of a file input component.', example: 'clearFiles(id: string)', - documentation: 'https://www.windmill.dev/docs/apps/app-runnable-panel#clearFiles' + documentation: 'https://www.windmill.dev/docs/apps/app-runnable-panel#clearfiles' } const close = { diff --git a/frontend/src/lib/components/apps/editor/settingsPanel/Recompute.svelte b/frontend/src/lib/components/apps/editor/settingsPanel/Recompute.svelte index c8c5b5767e..e769d6d9f5 100644 --- a/frontend/src/lib/components/apps/editor/settingsPanel/Recompute.svelte +++ b/frontend/src/lib/components/apps/editor/settingsPanel/Recompute.svelte @@ -11,7 +11,7 @@ export let tooltip: string = 'Select components to recompute after this runnable has successfully run' export let documentationLink: string = - 'https://www.windmill.dev/docs/apps/app-runnable-panel#recompute-others' + 'https://www.windmill.dev/docs/apps/app-runnable-panel#trigger-runnables-on-success' const { runnableComponents } = getContext