mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-21 16:02:28 +00:00
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>
This commit is contained in:
@@ -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"
|
||||
/>
|
||||
</div>
|
||||
{#if result && result != 'WINDMILL_TOO_BIG'}
|
||||
|
||||
@@ -438,7 +438,7 @@
|
||||
</p>
|
||||
<p>
|
||||
More info in <a
|
||||
href="https://www.windmill.dev/docs/core_concepts/persistent_storage#connect-your-windmill-workspace-to-your-s3-bucket"
|
||||
href="https://www.windmill.dev/docs/core_concepts/persistent_storage/large_data_files"
|
||||
target="_blank">Windmill's documentation</a
|
||||
></p
|
||||
></Alert
|
||||
|
||||
@@ -238,7 +238,7 @@
|
||||
title="S3 Object recommended"
|
||||
collapsible
|
||||
size="xs"
|
||||
documentationLink="Pattern (Regex) 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/large_data_files"
|
||||
>
|
||||
For large files, we recommend using the S3 Object type instead of the base64 string type.
|
||||
</Alert>
|
||||
|
||||
@@ -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 = {
|
||||
|
||||
@@ -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<AppViewerContext>('AppViewerContext')
|
||||
|
||||
|
||||
+4
-4
@@ -140,27 +140,27 @@
|
||||
{#if !onlyFlow}
|
||||
<Tab size="sm" value="inlinescripts">
|
||||
<div class="flex gap-2 items-center my-1">
|
||||
<Building size={18} />
|
||||
<Building size={18} strokeWidth={1.5} />
|
||||
Detached Inline Scripts
|
||||
</div>
|
||||
</Tab>
|
||||
<Tab size="sm" value="workspacescripts">
|
||||
<div class="flex gap-2 items-center my-1">
|
||||
<Building size={18} />
|
||||
<Building size={18} strokeWidth={1.5}/>
|
||||
Workspace Scripts
|
||||
</div>
|
||||
</Tab>
|
||||
{/if}
|
||||
<Tab size="sm" value="workspaceflows">
|
||||
<div class="flex gap-2 items-center my-1">
|
||||
<Building size={18} />
|
||||
<Building size={18} strokeWidth={1.5} />
|
||||
Workspace Flows
|
||||
</div>
|
||||
</Tab>
|
||||
{#if !onlyFlow}
|
||||
<Tab size="sm" value="hubscripts">
|
||||
<div class="flex gap-2 items-center my-1">
|
||||
<Globe2 size={18} />
|
||||
<Globe2 size={18} strokeWidth={1.5} />
|
||||
Hub Scripts
|
||||
</div>
|
||||
</Tab>
|
||||
|
||||
@@ -2,7 +2,7 @@ export default `import os
|
||||
import wmill
|
||||
|
||||
# You can import any PyPi package.
|
||||
# See here for more info: https://www.windmill.dev/docs/advanced/imports#imports-in-python
|
||||
# See here for more info: https://www.windmill.dev/docs/advanced/dependencies_in_python
|
||||
|
||||
# you can use typed resources by doing a type alias to dict
|
||||
#postgresql = dict
|
||||
|
||||
Reference in New Issue
Block a user