FIX: improves locale support in tag-drop (#7418)

This commit is contained in:
Joffrey JAFFEUX
2019-04-23 17:53:59 +02:00
committed by GitHub
parent d4e788c136
commit c99faa6b25
4 changed files with 6 additions and 13 deletions

View File

@ -24,13 +24,13 @@ componentTest("default", {
if (params.queryParams.q === "rég") {
return response({
"results": [
{ "id": "régis", "name": "régis", "count": 2, "pm_count": 0 }
{ "id": "régis", "text": "régis", "count": 2, "pm_count": 0 }
]
});
}else if (params.queryParams.q === "dav") {
return response({
"results": [
{ "id": "David", "name": "David", "count": 2, "pm_count": 0 }
{ "id": "David", "text": "David", "count": 2, "pm_count": 0 }
]
});
}