This commit is contained in:
kolaente 2021-07-17 21:05:03 +02:00
parent 2c4829bc04
commit d3c04ef738
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
4 changed files with 8 additions and 10 deletions

View File

@ -150,14 +150,14 @@ export default {
type: String,
default() {
return this.$t('input.multiselect.createPlaceholder')
}
},
},
// The text shown next to an option.
selectPlaceholder: {
type: String,
default() {
return this.$t('input.multiselect.selectPlaceholder')
}
},
},
// If true, allows for selecting multiple items. v-model will be an array with all selected values in that case.
multiple: {

View File

@ -57,7 +57,7 @@ export default {
if (this.disabled) {
return this.$t('task.subscription.subscribedThroughParent', {
entity: this.entity,
parent: this.subscription.entity
parent: this.subscription.entity,
})
}

View File

@ -39,7 +39,7 @@
/>
</div>
</div>
<ShowTasks :show-all="true" v-if="hasLists" :key="showTasksKey" />
<ShowTasks :show-all="true" v-if="hasLists" :key="showTasksKey"/>
</div>
</template>
@ -117,10 +117,10 @@ export default {
},
}),
},
methods: {
updateTaskList() {
this.showTasksKey += 1
},
methods: {
updateTaskList() {
this.showTasksKey += 1
},
},
}
</script>

View File

@ -275,7 +275,6 @@ import TotpModel from '../../models/totp'
import TotpService from '../../services/totp'
import UserSettingsService from '../../services/userSettings'
import UserSettingsModel from '../../models/userSettings'
import ListSearch from '../../components/tasks/partials/listSearch'
import ListService from '../../services/list'
import ListModel from '../../models/list'
import {playSoundWhenDoneKey} from '@/helpers/playPop'
@ -316,7 +315,6 @@ export default {
},
components: {
AvatarSettings,
ListSearch,
},
created() {
this.passwordUpdateService = new PasswordUpdateService()