mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
fix(editor): Nodes' icon color in dark mode (#12279)
This commit is contained in:
@@ -17,6 +17,7 @@ import type {
|
||||
INodeListSearchResult,
|
||||
Icon,
|
||||
INodePropertyOptions,
|
||||
ThemeIconColor,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
import { getMetadataFiltersValues, logAiEvent } from '@utils/helpers';
|
||||
@@ -37,6 +38,7 @@ interface NodeMeta {
|
||||
description: string;
|
||||
docsUrl: string;
|
||||
icon: Icon;
|
||||
iconColor?: ThemeIconColor;
|
||||
credentials?: INodeCredentialDescription[];
|
||||
operationModes?: NodeOperationMode[];
|
||||
}
|
||||
@@ -125,6 +127,7 @@ export const createVectorStoreNode = (args: VectorStoreNodeConstructorArgs) =>
|
||||
name: args.meta.name,
|
||||
description: args.meta.description,
|
||||
icon: args.meta.icon,
|
||||
iconColor: args.meta.iconColor,
|
||||
group: ['transform'],
|
||||
version: 1,
|
||||
defaults: {
|
||||
|
||||
Reference in New Issue
Block a user