mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fixing #703 : missing ContentType header on datatable invoker api
This commit is contained in:
parent
7660bf8569
commit
a107a0392e
@ -62,6 +62,7 @@ if (uriMatcher.match("/{context}/api/data-tables/invoker")) {
|
|||||||
function (backendResponse) {
|
function (backendResponse) {
|
||||||
response["status"] = backendResponse["status"];
|
response["status"] = backendResponse["status"];
|
||||||
response["content"] = utility.encodeJson(backendResponse["responseText"]);
|
response["content"] = utility.encodeJson(backendResponse["responseText"]);
|
||||||
|
response["contentType"] = "application/json";
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user