aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2021-10-26 08:57:50 +0530
committerLibravatar GitHub <noreply@github.com>2021-10-26 08:57:50 +0530
commit2edcf95e6cf390e4511e3bfd61cdab6057cd6adc (patch)
treeb85c62fb608612f23c178c8d19f9598e2b48fe8b /src/containers
parentdocs: added 'sreelekhaMarasig' as contributor for code [skip ci] (diff)
downloadferdium-app-2edcf95e6cf390e4511e3bfd61cdab6057cd6adc.tar.gz
ferdium-app-2edcf95e6cf390e4511e3bfd61cdab6057cd6adc.tar.zst
ferdium-app-2edcf95e6cf390e4511e3bfd61cdab6057cd6adc.zip
feature: allow 'file' urls for services (fixes #2118) (#2130)
Diffstat (limited to 'src/containers')
-rw-r--r--src/containers/settings/EditServiceScreen.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/containers/settings/EditServiceScreen.js b/src/containers/settings/EditServiceScreen.js
index b84c0d5bb..ef907dcb8 100644
--- a/src/containers/settings/EditServiceScreen.js
+++ b/src/containers/settings/EditServiceScreen.js
@@ -267,7 +267,7 @@ class EditServiceScreen extends Component {
267 Object.assign(config.fields, { 267 Object.assign(config.fields, {
268 customUrl: { 268 customUrl: {
269 label: intl.formatMessage(messages.customUrl), 269 label: intl.formatMessage(messages.customUrl),
270 placeholder: 'https://', 270 placeholder: "'http://' or 'https://' or 'file:///'",
271 value: service.customUrl || recipe.serviceURL, 271 value: service.customUrl || recipe.serviceURL,
272 validators: [required, url], 272 validators: [required, url],
273 }, 273 },