diff --git a/module/execution/ui/build.html.php b/module/execution/ui/build.html.php
index 87b15a4421..5e33ac5c0b 100644
--- a/module/execution/ui/build.html.php
+++ b/module/execution/ui/build.html.php
@@ -44,10 +44,14 @@ jsVar('changeProductLink', helper::createLink('execution', 'build', "executionID
jsVar('scmPathTip', $lang->build->scmPath);
jsVar('filePathTip', $lang->build->filePath);
jsVar('confirmDelete', $lang->build->confirmDelete);
+
+$fieldList = $config->build->dtable->fieldList;
+if($execution->type == 'kanban') unset($fieldList['actions']['actionsMap']['createTest']['data-app']);
+
dtable
(
set::userMap($users),
- set::cols($config->build->dtable->fieldList),
+ set::cols($fieldList),
set::data($builds),
set::plugins(array('cellspan')),
set::onRenderCell(jsRaw('window.renderCell')),
diff --git a/module/project/ui/build.html.php b/module/project/ui/build.html.php
index 76a4f795ee..3f2dcfab6b 100644
--- a/module/project/ui/build.html.php
+++ b/module/project/ui/build.html.php
@@ -46,10 +46,14 @@ jsVar('scmPathTip', $lang->build->scmPath);
jsVar('filePathTip', $lang->build->filePath);
jsVar('integratedTip', $lang->build->integrated);
jsVar('deletedTip', $lang->build->deleted);
+
+$fieldList = $config->build->dtable->fieldList;
+if($project->model == 'kanban' && $this->app->rawModule == 'projectbuild') unset($fieldList['actions']['actionsMap']['createTest']['data-app']);
+
dtable
(
set::userMap($users),
- set::cols($config->build->dtable->fieldList),
+ set::cols($fieldList),
set::data($builds),
set::plugins(array('cellspan')),
set::orderBy($orderBy),