11<template >
22 <div class =" step-actions" >
3- <p class =" attribution-details-instructions " >
3+ <p class =" body-normal " >
44 {{ $t('stepper.AD.instructions') }}
55 </p >
66 <form class =" attribution-details-form" >
7- <b-field :label =" this. $t('stepper.AD.form.work-title.label')" >
7+ <b-field :label =" $t('stepper.AD.form.work-title.label')" >
88 <b-input
99 v-model =" workTitle"
10- :placeholder =" this. $t('stepper.AD.form.work-title.placeholder')"
10+ :placeholder =" $t('stepper.AD.form.work-title.placeholder')"
1111 />
1212 </b-field >
13- <b-field :label =" this. $t('stepper.AD.form.creator-name.label')" >
13+ <b-field :label =" $t('stepper.AD.form.creator-name.label')" >
1414 <b-input
1515 v-model =" creatorName"
16- :placeholder =" this. $t('stepper.AD.form.creator-name.placeholder')"
16+ :placeholder =" $t('stepper.AD.form.creator-name.placeholder')"
1717 />
1818 </b-field >
19- <b-field :label =" this. $t('stepper.AD.form.work-url.label')" >
19+ <b-field :label =" $t('stepper.AD.form.work-url.label')" >
2020 <b-input
2121 v-model =" workUrl"
22- :placeholder =" this. $t('stepper.AD.form.work-url.placeholder')"
22+ :placeholder =" $t('stepper.AD.form.work-url.placeholder')"
2323 />
2424 </b-field >
25- <b-field :label =" this. $t('stepper.AD.form.creator-profile.label')" >
25+ <b-field :label =" $t('stepper.AD.form.creator-profile.label')" >
2626 <b-input
2727 v-model =" creatorProfileUrl"
28- :placeholder =" this. $t('stepper.AD.form.creator-profile.placeholder')"
28+ :placeholder =" $t('stepper.AD.form.creator-profile.placeholder')"
2929 />
3030 </b-field >
3131 </form >
@@ -36,14 +36,7 @@ import { mapMutations, mapState } from 'vuex'
3636
3737export default {
3838 name: ' AttributionDetails' ,
39- props: {
40- status: {
41- type: String ,
42- validator (value ) {
43- return [' active' , ' previous' , ' inactive' ].includes (value)
44- }
45- }
46- },
39+ inheritAttrs: false ,
4740 computed: {
4841 ... mapState ([' attributionDetails' ]),
4942 creatorName: {
@@ -100,11 +93,6 @@ export default {
10093 }
10194}
10295@media only screen and (max-width : 768px ) {
103- .attribution-details-instructions {
104- font-size : 0.8125rem ;
105- line-height : 1.1875rem ;
106- font-weight : 600 ;
107- }
10896 .attribution-details-form .label {
10997 font-style : normal ;
11098 font-size : 0.8125rem ;
0 commit comments