mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
👕 Fix lint issue
This commit is contained in:
@@ -104,7 +104,7 @@ export default mixins(genericHelpers)
|
||||
getPath (index?: number): string {
|
||||
return this.path + (index !== undefined ? `[${index}]` : '');
|
||||
},
|
||||
moveOptionDown (index?: number) {
|
||||
moveOptionDown (index: number) {
|
||||
this.values.splice(index + 1, 0, this.values.splice(index, 1)[0]);
|
||||
|
||||
const parameterData = {
|
||||
@@ -114,7 +114,7 @@ export default mixins(genericHelpers)
|
||||
|
||||
this.$emit('valueChanged', parameterData);
|
||||
},
|
||||
moveOptionUp (index?: number) {
|
||||
moveOptionUp (index: number) {
|
||||
this.values.splice(index - 1, 0, this.values.splice(index, 1)[0]);
|
||||
|
||||
const parameterData = {
|
||||
|
||||
Reference in New Issue
Block a user