mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 23:54:07 -08:00
👕 Fix lint issue
This commit is contained in:
parent
a678968193
commit
5e923eb002
|
@ -233,7 +233,7 @@ export class Telegram implements INodeType {
|
||||||
{
|
{
|
||||||
name: 'Send Location',
|
name: 'Send Location',
|
||||||
value: 'sendLocation',
|
value: 'sendLocation',
|
||||||
description: 'Send a location'
|
description: 'Send a location',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Send Message',
|
name: 'Send Message',
|
||||||
|
@ -828,19 +828,19 @@ export class Telegram implements INodeType {
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
numberPrecision: 10,
|
numberPrecision: 10,
|
||||||
minValue: -90,
|
minValue: -90,
|
||||||
maxValue: 90
|
maxValue: 90,
|
||||||
},
|
},
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
operation: [
|
operation: [
|
||||||
'sendLocation'
|
'sendLocation',
|
||||||
],
|
],
|
||||||
resource: [
|
resource: [
|
||||||
'message'
|
'message',
|
||||||
]
|
],
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
description: 'Location latitude'
|
description: 'Location latitude',
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -850,20 +850,20 @@ export class Telegram implements INodeType {
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
numberPrecision: 10,
|
numberPrecision: 10,
|
||||||
minValue: -180,
|
minValue: -180,
|
||||||
maxValue: 180
|
maxValue: 180,
|
||||||
},
|
},
|
||||||
default: 0.0,
|
default: 0.0,
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
operation: [
|
operation: [
|
||||||
'sendLocation'
|
'sendLocation',
|
||||||
],
|
],
|
||||||
resource: [
|
resource: [
|
||||||
'message'
|
'message',
|
||||||
]
|
],
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
description: 'Location longitude'
|
description: 'Location longitude',
|
||||||
},
|
},
|
||||||
|
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -1070,7 +1070,7 @@ export class Telegram implements INodeType {
|
||||||
'sendSticker',
|
'sendSticker',
|
||||||
'sendVideo',
|
'sendVideo',
|
||||||
'sendAudio',
|
'sendAudio',
|
||||||
'sendLocation'
|
'sendLocation',
|
||||||
],
|
],
|
||||||
resource: [
|
resource: [
|
||||||
'message',
|
'message',
|
||||||
|
|
Loading…
Reference in a new issue