diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-05-24 03:57:03 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-05-24 03:57:03 +0900 |
| commit | 50251955cdeb5fbb8ff279bbcbea68d2bf606c7f (patch) | |
| tree | 668ba00f28e85d4aca9658095d9909d8ac15f6b3 /src/client/app/common | |
| parent | :art: (diff) | |
| download | sharkey-50251955cdeb5fbb8ff279bbcbea68d2bf606c7f.tar.gz sharkey-50251955cdeb5fbb8ff279bbcbea68d2bf606c7f.tar.bz2 sharkey-50251955cdeb5fbb8ff279bbcbea68d2bf606c7f.zip | |
Improve usability
Diffstat (limited to 'src/client/app/common')
| -rw-r--r-- | src/client/app/common/views/components/dialog.vue | 2 |
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 }; }, |