summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-05-24 03:57:03 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-05-24 03:57:03 +0900
commit50251955cdeb5fbb8ff279bbcbea68d2bf606c7f (patch)
tree668ba00f28e85d4aca9658095d9909d8ac15f6b3 /src/client
parent:art: (diff)
downloadsharkey-50251955cdeb5fbb8ff279bbcbea68d2bf606c7f.tar.gz
sharkey-50251955cdeb5fbb8ff279bbcbea68d2bf606c7f.tar.bz2
sharkey-50251955cdeb5fbb8ff279bbcbea68d2bf606c7f.zip
Improve usability
Diffstat (limited to 'src/client')
-rw-r--r--src/client/app/common/views/components/dialog.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/dialog.vue b/src/client/app/common/views/components/dialog.vue
index 9f38031d62..a577da5a21 100644
--- a/src/client/app/common/views/components/dialog.vue
+++ b/src/client/app/common/views/components/dialog.vue
@@ -98,7 +98,7 @@ export default Vue.extend({
return {
inputValue: this.input && this.input.default ? this.input.default : null,
userInputValue: null,
- selectedValue: null,
+ selectedValue: this.select ? this.select.items ? this.select.items[0].value : this.select.groupedItems[0].items[0].value : null,
faTimesCircle, faQuestionCircle
};
},