Skip to content
Snippets Groups Projects
Commit 6b440ee6 authored by François Agneray's avatar François Agneray
Browse files

Merge branch '18-construction-requete-anis-field-select-multiple' into 'develop'

#18 => done

Closes #18

See merge request !11
parents b6f9bb4d aca8cf53
No related branches found
No related tags found
2 merge requests!68Develop,!11#18 => done
Pipeline #1176 passed
......@@ -13,6 +13,6 @@ export class FieldCriterion extends Criterion {
}
getCriterionStr(): string {
return this.id + '-fd-' + this.value;
return this.id + ':eq:' + this.value;
}
}
......@@ -14,6 +14,6 @@ export class SelectMultipleCriterion extends Criterion {
}
getCriterionStr(): string {
return this.id + '-cb-' + this.options.map(option => option.value).join(':');
return this.id + ':in:' + this.options.map(option => option.value).join('|');
}
}
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