Merged in bugfix/PMCORE-3388_B (pull request #8191)

PMCORE-3388

Approved-by: Fabio Guachalla
This commit is contained in:
Rodrigo Quelca
2021-09-30 15:26:15 +00:00
committed by Julio Cesar Laura Avendaño

View File

@@ -347,6 +347,9 @@ export default {
let that = this; let that = this;
api.casesHeader.get().then((response) => { api.casesHeader.get().then((response) => {
that.headers = that.formatCasesHeaders(response.data); that.headers = that.formatCasesHeaders(response.data);
if (that.headers[0]) {
that.title = that.headers[0].title;
}
that.setFilterHeader(); that.setFilterHeader();
}); });
}, },