fix: Update incorrect label for team selection (#6180)

This commit is contained in:
Shivam Mishra
2023-01-06 09:05:11 +05:30
committed by GitHub
parent 269ad8f697
commit b9ae664d47

View File

@@ -90,7 +90,16 @@
</div> </div>
<div v-else class="small-12 medium-3 pull-right"> <div v-else class="small-12 medium-3 pull-right">
<p> <p>
{{ $t('INBOX_REPORTS.FILTER_DROPDOWN_LABEL') }} <template v-if="type === 'inbox'">
{{ $t('INBOX_REPORTS.FILTER_DROPDOWN_LABEL') }}
</template>
<template v-else-if="type === 'team'">
{{ $t('TEAM_REPORTS.FILTER_DROPDOWN_LABEL') }}
</template>
<!-- handle default condition because the prop is not limited to the given 4 values -->
<template v-else>
{{ $t('FORMS.MULTISELECT.SELECT_ONE') }}
</template>
</p> </p>
<multiselect <multiselect
v-model="currentSelectedFilter" v-model="currentSelectedFilter"