diff options
-rw-r--r-- | application/components/app.vue | 1 | ||||
-rw-r--r-- | application/components/github/picker.vue | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/application/components/app.vue b/application/components/app.vue index 38443b5..bdce49c 100644 --- a/application/components/app.vue +++ b/application/components/app.vue @@ -34,6 +34,7 @@ export default { this.sourceOther = other this.layout.splice(0, this.layout.length, ...layout) Object.assign(this.keymap, keymap) + this.editingKeymap = {} }, handleUpdateKeymap(keymap) { Object.assign(this.editingKeymap, keymap) diff --git a/application/components/github/picker.vue b/application/components/github/picker.vue index 7f40a7f..9c73c89 100644 --- a/application/components/github/picker.vue +++ b/application/components/github/picker.vue @@ -43,6 +43,12 @@ :errors="loadKeyboardWarnings" @dismiss="loadKeyboardWarnings = null" /> + + <button + v-if="branchName && !loadingKeyboard" + @click="loadKeyboard" + class="fa fa-sync" + /> </span> </loader> </template> |