From 5e923eb002e07bc951ecfe60fcd6f36d1a14d0d8 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Sun, 21 Feb 2021 21:51:39 +0100 Subject: [PATCH] :shirt: Fix lint issue --- .../nodes/Telegram/Telegram.node.ts | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/packages/nodes-base/nodes/Telegram/Telegram.node.ts b/packages/nodes-base/nodes/Telegram/Telegram.node.ts index ca01edd084..4a1330e242 100644 --- a/packages/nodes-base/nodes/Telegram/Telegram.node.ts +++ b/packages/nodes-base/nodes/Telegram/Telegram.node.ts @@ -233,7 +233,7 @@ export class Telegram implements INodeType { { name: 'Send Location', value: 'sendLocation', - description: 'Send a location' + description: 'Send a location', }, { name: 'Send Message', @@ -828,19 +828,19 @@ export class Telegram implements INodeType { typeOptions: { numberPrecision: 10, minValue: -90, - maxValue: 90 + maxValue: 90, }, displayOptions: { show: { operation: [ - 'sendLocation' + 'sendLocation', ], resource: [ - 'message' - ] - } + 'message', + ], + }, }, - description: 'Location latitude' + description: 'Location latitude', }, { @@ -850,20 +850,20 @@ export class Telegram implements INodeType { typeOptions: { numberPrecision: 10, minValue: -180, - maxValue: 180 + maxValue: 180, }, default: 0.0, displayOptions: { show: { operation: [ - 'sendLocation' + 'sendLocation', ], resource: [ - 'message' - ] - } + 'message', + ], + }, }, - description: 'Location longitude' + description: 'Location longitude', }, // ---------------------------------- @@ -1070,7 +1070,7 @@ export class Telegram implements INodeType { 'sendSticker', 'sendVideo', 'sendAudio', - 'sendLocation' + 'sendLocation', ], resource: [ 'message',