mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-12-23 21:20:24 +01:00
Stringify objects on dashboard to avoid [Object object]
This commit is contained in:
parent
ea2f2ecf96
commit
4fd0116a0d
@ -60,7 +60,13 @@ $('#query, #filters').on('input', function () {
|
|||||||
|
|
||||||
const content = document.createElement('div');
|
const content = document.createElement('div');
|
||||||
content.classList.add("content");
|
content.classList.add("content");
|
||||||
content.innerHTML = element[prop];
|
|
||||||
|
// Stringify Objects and Arrays to avoid [Object object]
|
||||||
|
if (typeof element[prop] === 'object' && element[prop] !== null) {
|
||||||
|
content.innerHTML = JSON.stringify(element[prop]);
|
||||||
|
} else {
|
||||||
|
content.innerHTML = element[prop];
|
||||||
|
}
|
||||||
|
|
||||||
field.appendChild(attribute);
|
field.appendChild(attribute);
|
||||||
field.appendChild(content);
|
field.appendChild(content);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user