Show the color dropdown when creating a new automatic action

Fixes #4443
This commit is contained in:
Slade
2020-04-29 19:33:21 -06:00
committed by GitHub
parent 7fb830518e
commit f397a81984
3 changed files with 18 additions and 5 deletions

View File

@@ -108,9 +108,7 @@ class TaskHelper extends Base
public function renderColorField(array $values)
{
$colors = $this->colorModel->getList();
$html = $this->helper->form->label(t('Color'), 'color_id');
$html .= $this->helper->form->select('color_id', $colors, $values, array(), array('tabindex="4"'), 'color-picker');
$html = $this->helper->form->colorSelect('color_id', $values);
return $html;
}