mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
fix: Fix missing node logos (#9844)
This commit is contained in:
parent
8a09806c5a
commit
1eeaf32523
|
@ -81,7 +81,6 @@ export class ActiveCampaign implements INodeType {
|
|||
description: INodeTypeDescription = {
|
||||
displayName: 'ActiveCampaign',
|
||||
name: 'activeCampaign',
|
||||
|
||||
icon: { light: 'file:activeCampaign.svg', dark: 'file:activeCampaign.dark.svg' },
|
||||
group: ['transform'],
|
||||
version: 1,
|
||||
|
|
|
@ -15,8 +15,7 @@ export class ActiveCampaignTrigger implements INodeType {
|
|||
description: INodeTypeDescription = {
|
||||
displayName: 'ActiveCampaign Trigger',
|
||||
name: 'activeCampaignTrigger',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
||||
icon: 'file:activeCampaign.png',
|
||||
icon: { light: 'file:activeCampaign.svg', dark: 'file:activeCampaign.dark.svg' },
|
||||
group: ['trigger'],
|
||||
version: 1,
|
||||
description: 'Handle ActiveCampaign events via webhooks',
|
||||
|
|
|
@ -26,7 +26,6 @@ export class Affinity implements INodeType {
|
|||
description: INodeTypeDescription = {
|
||||
displayName: 'Affinity',
|
||||
name: 'affinity',
|
||||
|
||||
icon: { light: 'file:affinity.svg', dark: 'file:affinity.dark.svg' },
|
||||
group: ['output'],
|
||||
version: 1,
|
||||
|
|
|
@ -14,8 +14,7 @@ export class AffinityTrigger implements INodeType {
|
|||
description: INodeTypeDescription = {
|
||||
displayName: 'Affinity Trigger',
|
||||
name: 'affinityTrigger',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
||||
icon: 'file:affinity.png',
|
||||
icon: { light: 'file:affinity.svg', dark: 'file:affinity.dark.svg' },
|
||||
group: ['trigger'],
|
||||
version: 1,
|
||||
description: 'Handle Affinity events via webhooks',
|
||||
|
|
|
@ -18,7 +18,6 @@ export class Amqp implements INodeType {
|
|||
description: INodeTypeDescription = {
|
||||
displayName: 'AMQP Sender',
|
||||
name: 'amqp',
|
||||
|
||||
icon: 'file:amqp.svg',
|
||||
group: ['transform'],
|
||||
version: 1,
|
||||
|
|
|
@ -16,8 +16,7 @@ export class AmqpTrigger implements INodeType {
|
|||
description: INodeTypeDescription = {
|
||||
displayName: 'AMQP Trigger',
|
||||
name: 'amqpTrigger',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
||||
icon: 'file:amqp.png',
|
||||
icon: 'file:amqp.svg',
|
||||
group: ['trigger'],
|
||||
version: 1,
|
||||
description: 'Listens to AMQP 1.0 Messages',
|
||||
|
|
|
@ -19,7 +19,7 @@ import type { IWorkspaceDto } from './WorkpaceInterfaces';
|
|||
export class ClockifyTrigger implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Clockify Trigger',
|
||||
icon: 'file:clockify.svg',
|
||||
icon: { light: 'file:clockify.svg', dark: 'file:clockify.dark.svg' },
|
||||
name: 'clockifyTrigger',
|
||||
group: ['trigger'],
|
||||
version: 1,
|
||||
|
|
|
@ -23,7 +23,6 @@ export class Cockpit implements INodeType {
|
|||
description: INodeTypeDescription = {
|
||||
displayName: 'Cockpit',
|
||||
name: 'cockpit',
|
||||
|
||||
icon: { light: 'file:cockpit.svg', dark: 'file:cockpit.dark.svg' },
|
||||
group: ['output'],
|
||||
version: 1,
|
||||
|
|
|
@ -36,7 +36,7 @@ export class CrowdDevTrigger implements INodeType {
|
|||
description: INodeTypeDescription = {
|
||||
displayName: 'crowd.dev Trigger',
|
||||
name: 'crowdDevTrigger',
|
||||
icon: 'file:crowdDev.svg',
|
||||
icon: { light: 'file:crowdDev.svg', dark: 'file:crowdDev.dark.svg' },
|
||||
group: ['trigger'],
|
||||
version: 1,
|
||||
description: 'Starts the workflow when crowd.dev events occur.',
|
||||
|
|
|
@ -23,7 +23,7 @@ export class CustomerIoTrigger implements INodeType {
|
|||
displayName: 'Customer.io Trigger',
|
||||
name: 'customerIoTrigger',
|
||||
group: ['trigger'],
|
||||
icon: 'file:customerio.svg',
|
||||
icon: { light: 'file:customerio.svg', dark: 'file:customerio.dark.svg' },
|
||||
version: 1,
|
||||
description: 'Starts the workflow on a Customer.io update (Beta)',
|
||||
defaults: {
|
||||
|
|
|
@ -16,7 +16,7 @@ export class DeepL implements INodeType {
|
|||
description: INodeTypeDescription = {
|
||||
displayName: 'DeepL',
|
||||
name: 'deepL',
|
||||
icon: { light: 'file:deepl.svg', dark: 'file:deepl.dark.svg' },
|
||||
icon: { light: 'file:deepl.svg', dark: 'file:deepL.dark.svg' },
|
||||
group: ['input', 'output'],
|
||||
version: 1,
|
||||
description: 'Translate data using DeepL',
|
||||
|
|
|
@ -15,7 +15,6 @@ export class Flow implements INodeType {
|
|||
description: INodeTypeDescription = {
|
||||
displayName: 'Flow',
|
||||
name: 'flow',
|
||||
|
||||
icon: 'file:flow.svg',
|
||||
group: ['output'],
|
||||
version: 1,
|
||||
|
|
|
@ -13,8 +13,7 @@ export class FlowTrigger implements INodeType {
|
|||
description: INodeTypeDescription = {
|
||||
displayName: 'Flow Trigger',
|
||||
name: 'flowTrigger',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
||||
icon: 'file:flow.png',
|
||||
icon: 'file:flow.svg',
|
||||
group: ['trigger'],
|
||||
version: 1,
|
||||
description: 'Handle Flow events via webhooks',
|
||||
|
|
|
@ -16,7 +16,7 @@ export class GithubTrigger implements INodeType {
|
|||
description: INodeTypeDescription = {
|
||||
displayName: 'Github Trigger',
|
||||
name: 'githubTrigger',
|
||||
icon: 'file:github.svg',
|
||||
icon: { light: 'file:github.svg', dark: 'file:github.dark.svg' },
|
||||
group: ['trigger'],
|
||||
version: 1,
|
||||
subtitle:
|
||||
|
|
|
@ -17,7 +17,7 @@ export class KafkaTrigger implements INodeType {
|
|||
description: INodeTypeDescription = {
|
||||
displayName: 'Kafka Trigger',
|
||||
name: 'kafkaTrigger',
|
||||
icon: 'file:kafka.svg',
|
||||
icon: { light: 'file:kafka.svg', dark: 'file:kafka.dark.svg' },
|
||||
group: ['trigger'],
|
||||
version: [1, 1.1],
|
||||
description: 'Consume messages from a Kafka topic',
|
||||
|
|
|
@ -15,7 +15,7 @@ export class LoneScaleTrigger implements INodeType {
|
|||
description: INodeTypeDescription = {
|
||||
displayName: 'LoneScale Trigger',
|
||||
name: 'loneScaleTrigger',
|
||||
icon: 'file:lonescale-logo.svg',
|
||||
icon: { light: 'file:loneScale.svg', dark: 'file:loneScale.dark.svg' },
|
||||
group: ['trigger'],
|
||||
version: 1,
|
||||
description: 'Trigger LoneScale Workflow',
|
||||
|
|
|
@ -16,7 +16,7 @@ export class MailchimpTrigger implements INodeType {
|
|||
description: INodeTypeDescription = {
|
||||
displayName: 'Mailchimp Trigger',
|
||||
name: 'mailchimpTrigger',
|
||||
icon: 'file:mailchimp.svg',
|
||||
icon: { light: 'file:mailchimp.svg', dark: 'file:mailchimp.dark.svg' },
|
||||
group: ['trigger'],
|
||||
version: 1,
|
||||
description: 'Handle Mailchimp events via webhooks',
|
||||
|
|
|
@ -20,7 +20,6 @@ export class RabbitMQ implements INodeType {
|
|||
description: INodeTypeDescription = {
|
||||
displayName: 'RabbitMQ',
|
||||
name: 'rabbitmq',
|
||||
|
||||
icon: 'file:rabbitmq.svg',
|
||||
group: ['transform'],
|
||||
version: [1, 1.1],
|
||||
|
|
|
@ -21,8 +21,7 @@ export class RabbitMQTrigger implements INodeType {
|
|||
description: INodeTypeDescription = {
|
||||
displayName: 'RabbitMQ Trigger',
|
||||
name: 'rabbitmqTrigger',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
||||
icon: 'file:rabbitmq.png',
|
||||
icon: 'file:rabbitmq.svg',
|
||||
group: ['trigger'],
|
||||
version: 1,
|
||||
description: 'Listens to RabbitMQ messages',
|
||||
|
|
|
@ -14,6 +14,7 @@ export class RssFeedReadTrigger implements INodeType {
|
|||
displayName: 'RSS Feed Trigger',
|
||||
name: 'rssFeedReadTrigger',
|
||||
icon: 'fa:rss',
|
||||
iconColor: 'orange-red',
|
||||
group: ['trigger'],
|
||||
version: 1,
|
||||
description: 'Starts a workflow when an RSS feed is updated',
|
||||
|
|
Loading…
Reference in a new issue