refactor: Run lintfix (no-changelog) (#7537)

- Fix autofixable violations
- Remove unused directives
- Allow for PascalCased variables - needed for dynamically imported or
assigned classes, decorators, routers, etc.
This commit is contained in:
Iván Ovejero
2023-10-27 14:15:02 +02:00
committed by GitHub
parent 1c4ac02db5
commit 62c096710f
477 changed files with 706 additions and 1003 deletions

View File

@@ -89,7 +89,7 @@ export default defineComponent({
},
computed: {
...mapStores(useRootStore, useSettingsStore, useUIStore, useWorkflowsStore),
accordionItems(): Object[] {
accordionItems(): object[] {
return [
{
id: 'productionExecutions',
@@ -114,7 +114,7 @@ export default defineComponent({
];
},
shouldExpandAccordion(): boolean {
if (this.initiallyExpanded === false) {
if (!this.initiallyExpanded) {
return false;
}
return (

View File

@@ -98,8 +98,7 @@ export default defineComponent({
...mapStores(useTagsStore, useNodeTypesStore, useSettingsStore, useUIStore, useWorkflowsStore),
hidePreview(): boolean {
const activeNotPresent =
this.filterApplied &&
!(this.executions as IExecutionsSummary[]).find((ex) => ex.id === this.activeExecution?.id);
this.filterApplied && !this.executions.find((ex) => ex.id === this.activeExecution?.id);
return this.loading || !this.executions.length || activeNotPresent;
},
filterApplied(): boolean {
@@ -193,7 +192,7 @@ export default defineComponent({
}
}
this.autoRefresh = this.uiStore.executionSidebarAutoRefresh === true;
this.autoRefresh = this.uiStore.executionSidebarAutoRefresh;
void this.startAutoRefreshInterval();
document.addEventListener('visibilitychange', this.onDocumentVisibilityChange);
@@ -581,7 +580,7 @@ export default defineComponent({
this.uiStore.stateIsDirty = false;
},
async addNodes(nodes: INodeUi[], connections?: IConnections) {
if (!nodes || !nodes.length) {
if (!nodes?.length) {
return;
}
@@ -723,7 +722,7 @@ export default defineComponent({
loadWorkflow,
);
if (retrySuccessful === true) {
if (retrySuccessful) {
this.showMessage({
title: this.$locale.baseText('executionsList.showMessage.retrySuccessfulTrue.title'),
type: 'success',

View File

@@ -145,7 +145,7 @@ export default defineComponent({
}
}
},
onRetryExecution(payload: Object) {
onRetryExecution(payload: object) {
this.$emit('retryExecution', payload);
},
onRefresh(): void {