Skip to content
Snippets Groups Projects
Commit cf478d51 authored by Camille Blanchon's avatar Camille Blanchon
Browse files

Merge branch 'redmine-issues/19722' into 'develop'

REDMINE_ISSUE-19722 | Créer des filtres pour les attributs projet sur l'accueil de l'application

See merge request !759
parents 225e79e0 98d52e8d
No related branches found
No related tags found
1 merge request!759REDMINE_ISSUE-19722 | Créer des filtres pour les attributs projet sur l'accueil de l'application
......@@ -19,6 +19,9 @@
@remove="remove"
@close="close"
>
<template slot="option" slot-scope="props">
<span :title="props.option.label">{{ props.option.label }}</span>
</template>
<template
v-if="multiple"
slot="selection"
......@@ -98,7 +101,12 @@ export default {
created() {
this.selection = this.options[0];
if (this.defaultFilter) {
const selectFilter = (filter) => this.select(this.options.find(option => option.value === filter));
const selectFilter = (filter) => {
const defaultOption = this.options.find(option => option.value === filter);
if (defaultOption) {
this.select(defaultOption);
}
};
// Specific process if multiple values type and has more than one values
if (this.multiple && this.defaultFilter.includes(',')) {
// make an array from the string
......
<template>
<div
id="filters-container"
v-if="displayedClassicFilters || displayedAttributeFilters"
id="filters-container"
class="margin-bottom"
>
<div
......@@ -59,7 +59,7 @@
</label>
<DropdownMenuItem
:options="attribute.options"
:multiple="attribute.field_type === 'multi_choices_list'"
:multiple="attribute.field_type.includes('list')"
:current-selection="attributesFilter[attribute.id]"
:default-filter="attribute.default_filter_enabled ? attribute.default_filter_value : null"
@filter="updateAttributeFilter"
......@@ -297,7 +297,7 @@ export default {
// Retrieve the attribute type information to determine how to handle the update
const attribute = this.getProjectAttribute(filter);
// Check if the attribute allows multiple selections
const isMultiChoice = attribute.field_type === 'multi_choices_list';
const isMultiChoice = attribute.field_type.includes('list');
if (isMultiChoice) {
// For multi-choice attributes, manage the values as an array to allow multiple selections
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment