Elastic: Fix checkbox style issue in tasks export dialog

This commit is contained in:
Aleksander Machniak 2019-01-31 09:11:02 +00:00
parent cbd1c1ae47
commit c426b5ddd2

View file

@ -550,7 +550,7 @@ class tasklist_ui
);
$checkbox = new html_checkbox(array('name' => 'attachments', 'id' => 'task-export-attachments', 'value' => 1, 'class' => 'form-check-input pretty-checkbox'));
$html .= html::div('form-section form-group row form-check',
$html .= html::div('form-section row form-check',
html::label(array('for' => 'task-export-attachments', 'class' => 'col-sm-4 col-form-label'), $this->plugin->gettext('exportattachments'))
. html::div('col-sm-8', $checkbox->show(1))
);