diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-11-15 14:18:25 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-11-15 14:18:25 +0900 |
| commit | 7a7a56940c198da5130a87e4ccf7dd0f12856be1 (patch) | |
| tree | d276d74a462f602b5200fedf8e32f5f97f0da8bd /src | |
| parent | 12.57.0 (diff) | |
| download | misskey-7a7a56940c198da5130a87e4ccf7dd0f12856be1.tar.gz misskey-7a7a56940c198da5130a87e4ccf7dd0f12856be1.tar.bz2 misskey-7a7a56940c198da5130a87e4ccf7dd0f12856be1.zip | |
一旦パブリックにしないとクリップ作成できない問題を修正
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/components/note.vue | 3 | ||||
| -rw-r--r-- | src/client/pages/my-clips/index.vue | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/client/components/note.vue b/src/client/components/note.vue index 8aa205bdec..3f3e0c30be 100644 --- a/src/client/components/note.vue +++ b/src/client/components/note.vue @@ -786,7 +786,8 @@ export default defineComponent({ }, isPublic: { type: 'boolean', - label: this.$t('public') + label: this.$t('public'), + default: false } }); if (canceled) return; diff --git a/src/client/pages/my-clips/index.vue b/src/client/pages/my-clips/index.vue index efead39fcb..ff7ef6282c 100644 --- a/src/client/pages/my-clips/index.vue +++ b/src/client/pages/my-clips/index.vue @@ -60,7 +60,8 @@ export default defineComponent({ }, isPublic: { type: 'boolean', - label: this.$t('public') + label: this.$t('public'), + default: false } }); if (canceled) return; |