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

#18 => done

parent b6f9bb4d
No related branches found
No related tags found
2 merge requests!68Develop,!11#18 => done
......@@ -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