fix: Update incorrect label for team selection (#6180)
This commit is contained in:
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user