diff --git a/io.sc.engine.rule.frontend/src/views/shared/TestCaseGrid.vue b/io.sc.engine.rule.frontend/src/views/shared/TestCaseGrid.vue index bb0306ae..156754c9 100644 --- a/io.sc.engine.rule.frontend/src/views/shared/TestCaseGrid.vue +++ b/io.sc.engine.rule.frontend/src/views/shared/TestCaseGrid.vue @@ -205,18 +205,7 @@ const actionMap = { const getActions = () => { if (Tools.isNill(props.owner)) { - return [ - 'query', - 'separator', - 'refresh', - actionMap['execute'], - actionMap['executeAll'], - [actionMap['batchTest'], actionMap['upload']], - 'separator', - 'view', - 'separator', - 'export', - ]; + return ['query', 'separator', 'refresh', actionMap['execute'], actionMap['executeAll'], [actionMap['batchTest'], actionMap['upload']], 'separator', 'view']; } else { return [ 'refresh', @@ -230,8 +219,6 @@ const getActions = () => { [actionMap['batchTest'], actionMap['download'], actionMap['upload']], 'separator', 'view', - 'separator', - 'export', ]; } };