mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Handle url with file protocol for repository URL input field
This commit is contained in:
parent
bae0c02f11
commit
eb4a78fde0
1 changed files with 2 additions and 1 deletions
|
|
@ -35,7 +35,8 @@ limitations under the License.
|
|||
<div class="form-group">
|
||||
<label class="control-label col-sm-2" for="repoUrl">URL</label>
|
||||
<div class="col-sm-10">
|
||||
<input type="url" class="form-control" id="repoUrl" ng-model="newRepoSetting.url"
|
||||
<input type="text" pattern="(http|https|file)://.*" title="Please enter URL starts with http://, https:// or file://"
|
||||
class="form-control" id="repoUrl" ng-model="newRepoSetting.url"
|
||||
placeholder="Repository url" required>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue