mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-1200] Error handling for wrong host urls (#2140)
* Make the host errors in settings easier to understand * Commented proxy settings for testing for the next time * delete unnecessary proxy rule
This commit is contained in:
committed by
Eugenio Romano
parent
c3437d54eb
commit
2b92e03a1c
@@ -12,10 +12,19 @@
|
|||||||
<nav class="mdl-navigation">
|
<nav class="mdl-navigation">
|
||||||
<i class="icon material-icons icon-margin">link</i>
|
<i class="icon material-icons icon-margin">link</i>
|
||||||
<div class="mdl-textfield mdl-js-textfield adf-setting-input-padding">
|
<div class="mdl-textfield mdl-js-textfield adf-setting-input-padding">
|
||||||
<input data-automation-id="ecmHost" class="mdl-textfield__input" tabindex="1" type="text" tabindex="1" (change)="onChangeECMHost($event)"
|
<input
|
||||||
pattern="^(http|https):\/\/.*[^/]$" id="ecmHost" value="{{ecmHost}}">
|
data-automation-id="ecmHost"
|
||||||
|
class="mdl-textfield__input"
|
||||||
|
tabindex="1"
|
||||||
|
type="text"
|
||||||
|
tabindex="1"
|
||||||
|
(change)="onChangeECMHost($event)"
|
||||||
|
pattern="^(http|https):\/\/.*[^/]$"
|
||||||
|
id="ecmHost"
|
||||||
|
value="{{ecmHost}}"
|
||||||
|
placeholder="http(s)://host|ip:port(/path)">
|
||||||
<label class="mdl-textfield__label" for="ecmHost">ECM Host</label>
|
<label class="mdl-textfield__label" for="ecmHost">ECM Host</label>
|
||||||
<span class="mdl-textfield__error">ECM host is not valid!</span>
|
<span class="mdl-textfield__error">ECM host is not valid! http(s)://host|ip:port(/path)</span>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
@@ -25,10 +34,18 @@
|
|||||||
<nav class="mdl-navigation">
|
<nav class="mdl-navigation">
|
||||||
<i class="icon material-icons icon-margin">link</i>
|
<i class="icon material-icons icon-margin">link</i>
|
||||||
<div class="mdl-textfield mdl-js-textfield adf-setting-input-padding">
|
<div class="mdl-textfield mdl-js-textfield adf-setting-input-padding">
|
||||||
<input class="mdl-textfield__input" type="text" (change)="onChangeBPMHost($event)" tabindex="2" pattern="^(http|https):\/\/.*[^/]$"
|
<input
|
||||||
id="bpmHost" value="{{bpmHost}}">
|
data-automation-id="bpmHost"
|
||||||
|
class="mdl-textfield__input"
|
||||||
|
type="text"
|
||||||
|
(change)="onChangeBPMHost($event)"
|
||||||
|
tabindex="2"
|
||||||
|
pattern="^(http|https):\/\/.*[^/]$"
|
||||||
|
id="bpmHost"
|
||||||
|
value="{{bpmHost}}"
|
||||||
|
placeholder="http(s)://host|ip:port(/path)">
|
||||||
<label class="mdl-textfield__label" for="bpmHost">BPM Host</label>
|
<label class="mdl-textfield__label" for="bpmHost">BPM Host</label>
|
||||||
<span class="mdl-textfield__error">BPM host is not valid!</span>
|
<span class="mdl-textfield__error">BPM host is not valid! http(s)://host|ip:port(/path)</span>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
Reference in New Issue
Block a user