mirror of https://github.com/rancher/ui.git
Merge pull request #3334 from loganhz/registry
Strip off https:// for private registry
This commit is contained in:
commit
4820137ac2
|
|
@ -66,6 +66,11 @@ textarea:required {
|
|||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
// Firefox fix to turn off the red box shadow on invalid fields
|
||||
input:invalid {
|
||||
box-shadow: initial;
|
||||
}
|
||||
|
||||
input[type='text'],
|
||||
input[type='password'],
|
||||
input[type='number'],
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@
|
|||
urlWarning=(action (mut urlWarning))
|
||||
urlError=(action (mut urlError))
|
||||
value=privateRegistry.url
|
||||
stripScheme=false
|
||||
stripScheme=true
|
||||
}}
|
||||
{{/input-or-display}}
|
||||
</CheckOverrideAllowed>
|
||||
|
|
|
|||
Loading…
Reference in New Issue