We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2c9bc1 commit 6a5fedfCopy full SHA for 6a5fedf
scanpipe/forms.py
@@ -64,16 +64,17 @@ class InputsBaseForm(forms.Form):
64
label="Download URLs",
65
required=False,
66
help_text=(
67
- "Provide one or more URLs to download, one per line. "
68
- "Files are fetched at the beginning of the pipeline run execution."
+ "Enter one or more download URLs, one per line. "
+ "Files will be fetched when the pipeline starts."
69
),
70
widget=forms.Textarea(
71
attrs={
72
"class": "textarea is-dynamic",
73
- "rows": 2,
+ "rows": 3,
74
"placeholder": (
75
"https://domain.com/archive.zip\n"
76
- "docker://docker-reference (e.g.: docker://postgres:13)"
+ "docker://docker-reference (e.g.: docker://postgres:13)\n"
77
+ "pkg://type/name@version"
78
79
},
80
0 commit comments