diff options
author | dalmond <david.almond@f-grp.com> | 2016-08-17 12:20:12 +0100 |
---|---|---|
committer | David Almond <david.almond@f-grp.com> | 2016-08-17 12:51:59 +0100 |
commit | 5c685a2a78aea236153fb051ae9615ff0fe6e4a8 (patch) | |
tree | b8ee97e5984ff13ec11d582bc5a53e9e01836ff3 /app/Template/action | |
parent | 98efcf21e355ed6ac3827058b99df86ca67c75bb (diff) |
Automatic Actions now support Swimlanes
Diffstat (limited to 'app/Template/action')
-rw-r--r-- | app/Template/action/index.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Template/action/index.php b/app/Template/action/index.php index 0a94e4f0..7140dc85 100644 --- a/app/Template/action/index.php +++ b/app/Template/action/index.php @@ -54,6 +54,8 @@ <?= $this->text->in($param_value, $categories_list) ?> <?php elseif ($this->text->contains($param_name, 'link_id')): ?> <?= $this->text->in($param_value, $links_list) ?> + <?php elseif ($this->text->contains($param_name, 'swimlane_id')): ?> + <?= $this->text->in($param_value, $swimlane_list) ?> <?php else: ?> <?= $this->text->e($param_value) ?> <?php endif ?> |