Merge remote-tracking branch 'origin/develop' into migrate/vuex-to-pinia
This commit is contained in:
commit
58e18d48df
489 changed files with 31167 additions and 9871 deletions
|
|
@ -45,6 +45,10 @@ const PostStatusModal = {
|
|||
methods: {
|
||||
closeModal () {
|
||||
usePostStatusStore().closePostStatusModal()
|
||||
},
|
||||
resetAndClose () {
|
||||
usePostStatusStore().resetPostStatusModal()
|
||||
usePostStatusStore().closePostStatusModal()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,12 +7,16 @@
|
|||
>
|
||||
<div class="post-form-modal-panel panel">
|
||||
<div class="panel-heading">
|
||||
{{ $t('post_status.new_status') }}
|
||||
<h1 class="title">
|
||||
{{ $t('post_status.new_status') }}
|
||||
</h1>
|
||||
</div>
|
||||
<PostStatusForm
|
||||
class="panel-body"
|
||||
v-bind="params"
|
||||
@posted="closeModal"
|
||||
:closeable="true"
|
||||
@posted="resetAndClose"
|
||||
@draft-done="resetAndClose"
|
||||
/>
|
||||
</div>
|
||||
</Modal>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue