mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
⚡ Fix button text
This commit is contained in:
parent
4c397ea958
commit
dba4bc25c5
|
@ -60,7 +60,7 @@ export default mixins(
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
getPlaceholderText (): string {
|
getPlaceholderText (): string {
|
||||||
return this.parameter.placeholder ? this.parameter.placeholder : 'Choose option to add';
|
return this.parameter.placeholder ? this.parameter.placeholder : 'Choose Option To Add';
|
||||||
},
|
},
|
||||||
getProperties (): INodeProperties[] {
|
getProperties (): INodeProperties[] {
|
||||||
const returnProperties = [];
|
const returnProperties = [];
|
||||||
|
|
|
@ -76,7 +76,7 @@ export default mixins(genericHelpers)
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
getPlaceholderText (): string {
|
getPlaceholderText (): string {
|
||||||
return this.parameter.placeholder ? this.parameter.placeholder : 'Choose option to add';
|
return this.parameter.placeholder ? this.parameter.placeholder : 'Choose Option To Add';
|
||||||
},
|
},
|
||||||
getProperties (): INodePropertyCollection[] {
|
getProperties (): INodePropertyCollection[] {
|
||||||
const returnProperties = [];
|
const returnProperties = [];
|
||||||
|
|
Loading…
Reference in a new issue