Skip to content

Commit e7bc6f5

Browse files
committed
Fix for RHM
1 parent 3410593 commit e7bc6f5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "grafana-zabbix",
33
"private": false,
4-
"version": "4.1.3",
4+
"version": "4.1.5",
55
"description": "Zabbix plugin for Grafana",
66
"homepage": "http://grafana-zabbix.org",
77
"scripts": {

src/panel-triggers/components/Problems/Problems.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ export default class ProblemList extends PureComponent<ProblemListProps, Problem
136136
const hostTechNameCell = props => <HostCell name={props.original.hostTechName} maintenance={props.original.maintenance} />;
137137

138138
const columns = [
139+
{ Header: '', className: 'custom-expander', width: 60, expander: true, Expander: CustomExpander },
139140
{ Header: 'Host', id: 'host', show: options.hostField, Cell: hostNameCell },
140141
{ Header: 'Host (Technical Name)', id: 'hostTechName', show: options.hostTechNameField, Cell: hostTechNameCell },
141142
{ Header: 'Host Groups', accessor: 'groups', show: options.hostGroups, Cell: GroupCell },
@@ -171,7 +172,6 @@ export default class ProblemList extends PureComponent<ProblemListProps, Problem
171172
id: 'lastchange',
172173
Cell: props => LastChangeCell(props, options.customLastChangeFormat && options.lastChangeFormat),
173174
},
174-
{ Header: '', className: 'custom-expander', width: 60, expander: true, Expander: CustomExpander },
175175
];
176176
for (const column of columns) {
177177
if (column.show || column.show === undefined) {

src/plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
{"name": "Metric Editor", "path": "img/screenshot-metric_editor.png"},
2727
{"name": "Triggers", "path": "img/screenshot-triggers.png"}
2828
],
29-
"version": "4.1.4",
30-
"updated": "2021-03-09"
29+
"version": "4.1.5",
30+
"updated": "2021-05-18"
3131
},
3232

3333
"includes": [

0 commit comments

Comments
 (0)