mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
feat: Replace all Vue.set usages with direct assignment and spread operator (no-changelog) (#6280)
* refactor: replace all Vue.set usages with direct assignment and spread operator * chore: fix linting issue * fix: fix updateNodeAtIndex function * fix: various post-refactoring fixes * fix: refactor recently added Vue.set directive
This commit is contained in:
@@ -975,13 +975,10 @@ export interface ITagsState {
|
||||
fetchedUsageCount: boolean;
|
||||
}
|
||||
|
||||
export type Modals =
|
||||
| {
|
||||
[key: string]: ModalState;
|
||||
}
|
||||
| {
|
||||
[CREDENTIAL_EDIT_MODAL_KEY]: NewCredentialsModal;
|
||||
};
|
||||
export type Modals = {
|
||||
[CREDENTIAL_EDIT_MODAL_KEY]: NewCredentialsModal;
|
||||
[key: string]: ModalState;
|
||||
};
|
||||
|
||||
export type ModalState = {
|
||||
open: boolean;
|
||||
|
||||
Reference in New Issue
Block a user