mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(editor): Executions page (#4997)
* fix(editor): Create executions page * fix(editor): lint fix * fix(editor): Reuse execution list in both modal and page * fix(editor): fix ts issues * fix(editor): Reorganizing exec list components for easier redesign (everything is in its new place now) * fix(editor): Exec list item restyling * fix(editor): Exec list add back stripes * fix(editor): Exec list formatting dates and times * fix(editor): Exec list revert accidental searc and replace * fix(editor): Exec list translations and execution IDs * fix(editor): Exec list playing with table cell sizing * fix(editor): Exec list playing with table cell sizing * fix(editor): Exec list drop Element UI Table * fix(editor): Exec list adding sticky header and View button on row hover * fix(editor): Exec list open execution in new tab, add ellipsis menu to all rows with Delete action * fix(editor): Global exec list update translations snd fix tabindex * fix(editor): Global exec list redesign selection * fix(editor): Global exec list fix scrolling container * fix(editor): Global exec list fix running status * fix(editor): Global exec list fix waiting status
This commit is contained in:
@@ -93,7 +93,6 @@
|
||||
<script lang="ts">
|
||||
import { IExecutionResponse, IMenuItem, IVersion } from '../Interface';
|
||||
|
||||
import ExecutionsList from '@/components/ExecutionsList.vue';
|
||||
import GiftNotificationIcon from './GiftNotificationIcon.vue';
|
||||
import WorkflowSettings from '@/components/WorkflowSettings.vue';
|
||||
|
||||
@@ -111,7 +110,6 @@ import {
|
||||
MODAL_CONFIRMED,
|
||||
ABOUT_MODAL_KEY,
|
||||
VERSIONS_MODAL_KEY,
|
||||
EXECUTIONS_MODAL_KEY,
|
||||
VIEWS,
|
||||
PLACEHOLDER_EMPTY_WORKFLOW_ID,
|
||||
} from '@/constants';
|
||||
@@ -138,7 +136,6 @@ export default mixins(
|
||||
).extend({
|
||||
name: 'MainSidebar',
|
||||
components: {
|
||||
ExecutionsList,
|
||||
GiftNotificationIcon,
|
||||
WorkflowSettings,
|
||||
},
|
||||
@@ -239,8 +236,9 @@ export default mixins(
|
||||
{
|
||||
id: 'executions',
|
||||
icon: 'tasks',
|
||||
label: this.$locale.baseText('generic.executions'),
|
||||
label: this.$locale.baseText('mainSidebar.executions'),
|
||||
position: 'top',
|
||||
activateOnRouteNames: [VIEWS.EXECUTIONS],
|
||||
},
|
||||
{
|
||||
id: 'settings',
|
||||
@@ -390,7 +388,9 @@ export default mixins(
|
||||
break;
|
||||
}
|
||||
case 'executions': {
|
||||
this.uiStore.openModal(EXECUTIONS_MODAL_KEY);
|
||||
if (this.$router.currentRoute.name !== VIEWS.EXECUTIONS) {
|
||||
this.$router.push({ name: VIEWS.EXECUTIONS });
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 'settings': {
|
||||
|
||||
Reference in New Issue
Block a user