diff --git a/resources/assets/js/home/MyCases/MyCases.vue b/resources/assets/js/home/MyCases/MyCases.vue index 7ddc57793..83efe41b8 100644 --- a/resources/assets/js/home/MyCases/MyCases.vue +++ b/resources/assets/js/home/MyCases/MyCases.vue @@ -347,6 +347,9 @@ export default { let that = this; api.casesHeader.get().then((response) => { that.headers = that.formatCasesHeaders(response.data); + if (that.headers[0]) { + that.title = that.headers[0].title; + } that.setFilterHeader(); }); },