mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
refactor: Correct spelling mistakes (no-changelog) (#9305)
This commit is contained in:
@@ -96,15 +96,15 @@ export class GoogleAnalyticsV1 implements INodeType {
|
||||
'https://www.googleapis.com/analytics/v3/metadata/ga/columns',
|
||||
);
|
||||
|
||||
for (const dimesion of dimensions) {
|
||||
for (const dimension of dimensions) {
|
||||
if (
|
||||
dimesion.attributes.type === 'DIMENSION' &&
|
||||
dimesion.attributes.status !== 'DEPRECATED'
|
||||
dimension.attributes.type === 'DIMENSION' &&
|
||||
dimension.attributes.status !== 'DEPRECATED'
|
||||
) {
|
||||
returnData.push({
|
||||
name: dimesion.attributes.uiName,
|
||||
value: dimesion.id,
|
||||
description: dimesion.attributes.description,
|
||||
name: dimension.attributes.uiName,
|
||||
value: dimension.id,
|
||||
description: dimension.attributes.description,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user