Browse Source

fix: fill in ssh key title on setting of repo (#950)

* fix: fill in ssh key title on setting of repo

* fix: Don't overwrite ssh key title if exist.
tags/v1.1.0
Bo-Yi Wu 7 years ago
parent
commit
4c12e2a4b9
2 changed files with 6 additions and 6 deletions
  1. 4
    4
      public/js/index.js
  2. 2
    2
      templates/repo/settings/deploy_keys.tmpl

+ 4
- 4
public/js/index.js View File

@@ -1491,10 +1491,10 @@ $(function () {

// Parse SSH Key
$("#ssh-key-content").on('change paste keyup',function(){
var value = $(this).val();
var arrays = value.split(" ");
if (arrays.length === 3 && arrays[2] !== "") {
$("#ssh-key-title").val(arrays[2]);
var arrays = $(this).val().split(" ");
var $title = $("#ssh-key-title")
if ($title.val() === "" && arrays.length === 3 && arrays[2] !== "") {
$title.val(arrays[2]);
}
});
});

+ 2
- 2
templates/repo/settings/deploy_keys.tmpl View File

@@ -57,11 +57,11 @@
</div>
<div class="field {{if .Err_Title}}error{{end}}">
<label for="title">{{.i18n.Tr "repo.settings.title"}}</label>
<input id="title" name="title" value="{{.title}}" autofocus required>
<input id="ssh-key-title" name="title" value="{{.title}}" autofocus required>
</div>
<div class="field {{if .Err_Content}}error{{end}}">
<label for="content">{{.i18n.Tr "repo.settings.deploy_key_content"}}</label>
<textarea id="content" name="content" required>{{.content}}</textarea>
<textarea id="ssh-key-content" name="content" required>{{.content}}</textarea>
</div>
<button class="ui green button">
{{.i18n.Tr "repo.settings.add_deploy_key"}}

Loading…
Cancel
Save