From 1218bdd655a08cf28e8a0c8bfd05480ec38a4446 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Wed, 15 Dec 2021 13:47:35 -0300 Subject: [PATCH] [web] improvement: adding the 'URL' word besides the address field on the installation form --- bauh/gems/web/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bauh/gems/web/controller.py b/bauh/gems/web/controller.py index 155acc05..a809a258 100644 --- a/bauh/gems/web/controller.py +++ b/bauh/gems/web/controller.py @@ -485,7 +485,7 @@ class WebApplicationManager(SoftwareManager): def _ask_install_options(self, app: WebApplication, watcher: ProcessWatcher, pre_validated: bool) -> Tuple[bool, List[str]]: watcher.change_substatus(self.i18n['web.install.substatus.options']) - inp_url = TextInputComponent(label=self.i18n['address'], value=app.url, read_only=pre_validated) + inp_url = TextInputComponent(label=self.i18n['address'].capitalize() + ' (URL)', capitalize_label=False, value=app.url, read_only=pre_validated) inp_name = TextInputComponent(label=self.i18n['name'], value=app.name) inp_desc = TextInputComponent(label=self.i18n['description'], value=app.description)