From f690ed5e972ea6f9a0849aeb484e2baadaf55737 Mon Sep 17 00:00:00 2001 From: jeanpaul Date: Thu, 26 Jun 2025 12:42:17 +0200 Subject: [PATCH] fix: Add explicit icon to Google Sheet credential (no-changelog) (#16728) --- .../credentials/GoogleSheetsOAuth2Api.credentials.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/nodes-base/credentials/GoogleSheetsOAuth2Api.credentials.ts b/packages/nodes-base/credentials/GoogleSheetsOAuth2Api.credentials.ts index a80b5c7616..fb34b4ff04 100644 --- a/packages/nodes-base/credentials/GoogleSheetsOAuth2Api.credentials.ts +++ b/packages/nodes-base/credentials/GoogleSheetsOAuth2Api.credentials.ts @@ -1,4 +1,4 @@ -import type { ICredentialType, INodeProperties } from 'n8n-workflow'; +import type { Icon, ICredentialType, INodeProperties } from 'n8n-workflow'; const scopes = [ 'https://www.googleapis.com/auth/drive.file', @@ -13,6 +13,8 @@ export class GoogleSheetsOAuth2Api implements ICredentialType { displayName = 'Google Sheets OAuth2 API'; + icon: Icon = 'node:n8n-nodes-base.googleSheets'; + documentationUrl = 'google/oauth-single-service'; properties: INodeProperties[] = [