Skip to content

Commit 0526501

Browse files
author
Till Brehm
committed
Merge branch 'hotfix/3859' into 'stable-3.1'
fixed #3859 Bug fix for #3859, adding `class="form-control"` makes the box full-width. Same like the refresh box here: https://git.ispconfig.org/ispconfig/ispconfig3/blob/master/interface/web/monitor/templates/show_sys_state.htm#L10 See merge request !407
2 parents ef770c7 + e4c556d commit 0526501

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/web/monitor/lib/module.conf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
$servers = $app->db->queryAllRecords("SELECT server_id, server_name FROM server order by server_name");
4040

41-
$dropDown = "<select id='server_id' onchange=\"ISPConfig.loadContent('monitor/show_sys_state.php?state=server&server=' + document.getElementById('server_id').value);\">";
41+
$dropDown = "<select id='server_id' onchange=\"ISPConfig.loadContent('monitor/show_sys_state.php?state=server&server=' + document.getElementById('server_id').value);\" class='form-control'>";
4242
foreach ($servers as $server)
4343
{
4444
$dropDown .= "<option value='" . $server['server_id'] . "|" . $server['server_name'] . "'>" . $server['server_name'] . "</option>";

0 commit comments

Comments
 (0)