diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-30 14:43:03 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-30 14:43:03 +0900 |
| commit | 5621d5725c747da214f6c6f8721ffb5a86fb6f2b (patch) | |
| tree | 858cd406593e973789dcc533dea25b4a71e69c34 /src/client/app/desktop/views | |
| parent | Clean up (diff) | |
| download | misskey-5621d5725c747da214f6c6f8721ffb5a86fb6f2b.tar.gz misskey-5621d5725c747da214f6c6f8721ffb5a86fb6f2b.tar.bz2 misskey-5621d5725c747da214f6c6f8721ffb5a86fb6f2b.zip | |
[Client] Fix bug
Diffstat (limited to 'src/client/app/desktop/views')
| -rw-r--r-- | src/client/app/desktop/views/components/post-form.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/app/desktop/views/components/post-form.vue b/src/client/app/desktop/views/components/post-form.vue index 7ed8cf02ce..98c16cd5d0 100644 --- a/src/client/app/desktop/views/components/post-form.vue +++ b/src/client/app/desktop/views/components/post-form.vue @@ -381,7 +381,8 @@ export default Vue.extend({ setVisibility() { const w = this.$root.new(MkVisibilityChooser, { - source: this.$refs.visibilityButton + source: this.$refs.visibilityButton, + currentVisibility: this.visibility }); w.$once('chosen', v => { this.applyVisibility(v); |