[ZBXNEXT-8776] dashboard name on browser's tab title Created: 2023 Oct 21 Updated: 2023 Dec 22 |
|
Status: | Open |
Project: | ZABBIX FEATURE REQUESTS |
Component/s: | Frontend (F) |
Affects Version/s: | 6.4.6 |
Fix Version/s: | None |
Type: | Change Request | Priority: | Minor |
Reporter: | Verde | Assignee: | Valdis Murzins |
Resolution: | Unresolved | Votes: | 2 |
Labels: | Issue, dashboard, feature, frontend | ||
Remaining Estimate: | Not Specified | ||
Time Spent: | Not Specified | ||
Original Estimate: | Not Specified |
Attachments: |
![]() ![]() |
Description |
when having several, different dashboards opened, it's hard to identify quickly the one you need. It would be very helpful that the dashboard name is shown in the browser tabs instead of only "Dashboard" See image attached.
|
Comments |
Comment by Brian van Baekel [ 2023 Oct 31 ] |
Agreed to this one. Fix is really straight forward and easy... edit /usr/share/zabbix/app/controllers/CControllerDashboardView.php change line 168 from:
$response->setTitle(_('Dashboard'));
to $response->setTitle(_($data['dashboard']['name']));
and problem is solved - in bigger environments its quite helpful imo!
|
Comment by Verde [ 2023 Dec 22 ] |
it worked! it is indeed very helful, Thanks Brian. |