diff options
| author | HJ <30-hj@users.noreply.git.pleroma.social> | 2021-05-31 11:15:44 +0000 |
|---|---|---|
| committer | HJ <30-hj@users.noreply.git.pleroma.social> | 2021-05-31 11:15:44 +0000 |
| commit | 0ca0e642a43a75f8e903db7361158ad32b84ecc4 (patch) | |
| tree | fd96ac1da4e8b463cc3094dfdf4c88103179c673 /src/components/domain_mute_card/domain_mute_card.vue | |
| parent | 4e96af044224dc10b8cc4eb270e025f1b8a1d29a (diff) | |
| parent | 80220c1b07436098a8d87ffc0fc49fadc79ac9a4 (diff) | |
Merge branch 'v-slot-upgrade' into 'develop'
Change old slot syntax (removed in vue3) to new one
See merge request pleroma/pleroma-fe!1379
Diffstat (limited to 'src/components/domain_mute_card/domain_mute_card.vue')
| -rw-r--r-- | src/components/domain_mute_card/domain_mute_card.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/domain_mute_card/domain_mute_card.vue b/src/components/domain_mute_card/domain_mute_card.vue index 3b5aec14..836688aa 100644 --- a/src/components/domain_mute_card/domain_mute_card.vue +++ b/src/components/domain_mute_card/domain_mute_card.vue @@ -9,7 +9,7 @@ class="btn button-default" > {{ $t('domain_mute_card.unmute') }} - <template slot="progress"> + <template v-slot:progress> {{ $t('domain_mute_card.unmute_progress') }} </template> </ProgressButton> @@ -19,7 +19,7 @@ class="btn button-default" > {{ $t('domain_mute_card.mute') }} - <template slot="progress"> + <template v-slot:progress> {{ $t('domain_mute_card.mute_progress') }} </template> </ProgressButton> |
