aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-05-21 11:47:33 +0530
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-05-21 12:29:31 +0530
commit526237f5404da9b10b161abd5cda4e4000951bcf (patch)
tree61ccf15320c450e532b429c0aad98d76b9c4bda3 /src/containers
parent[Documentation] Updated documentation for docker artifacts. Updated recipes. ... (diff)
downloadferdium-app-526237f5404da9b10b161abd5cda4e4000951bcf.tar.gz
ferdium-app-526237f5404da9b10b161abd5cda4e4000951bcf.tar.zst
ferdium-app-526237f5404da9b10b161abd5cda4e4000951bcf.zip
Fixes #1436: Set the default value for the 'customUrl' while adding a service.
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 d92d3bc07..9a200d734 100644
--- a/src/containers/settings/EditServiceScreen.js
+++ b/src/containers/settings/EditServiceScreen.js
@@ -238,7 +238,7 @@ export default @inject('stores', 'actions') @observer class EditServiceScreen ex
238 customUrl: { 238 customUrl: {
239 label: intl.formatMessage(messages.customUrl), 239 label: intl.formatMessage(messages.customUrl),
240 placeholder: 'https://', 240 placeholder: 'https://',
241 value: service.customUrl, 241 value: service.customUrl || recipe.serviceURL,
242 validators: [required, url], 242 validators: [required, url],
243 }, 243 },
244 }); 244 });