diff --git a/packages/editor-ui/src/components/MultipleParameter.vue b/packages/editor-ui/src/components/MultipleParameter.vue index a3b0ea4b33..f06e17df60 100644 --- a/packages/editor-ui/src/components/MultipleParameter.vue +++ b/packages/editor-ui/src/components/MultipleParameter.vue @@ -65,8 +65,8 @@ export default mixins(genericHelpers) computed: { addButtonText (): string { if ( - !this.parameter.typeOptions && - !this.parameter.typeOptions.multipleValueButtonText + !this.parameter.typeOptions || + (this.parameter.typeOptions && !this.parameter.typeOptions.multipleValueButtonText) ) { return this.$locale.baseText('multipleParameter.addItem'); } diff --git a/packages/editor-ui/src/components/NodeCreator/NoResults.vue b/packages/editor-ui/src/components/NodeCreator/NoResults.vue index 42b156e5e3..3616a58ff7 100644 --- a/packages/editor-ui/src/components/NodeCreator/NoResults.vue +++ b/packages/editor-ui/src/components/NodeCreator/NoResults.vue @@ -9,7 +9,7 @@
{{ $locale.baseText('nodeCreator.noResults.dontWorryYouCanProbablyDoItWithThe') }} - {{ $locale.baseText('nodeCreator.noResults.httpRequest') }} or + {{ $locale.baseText('nodeCreator.noResults.httpRequest') }} {{ $locale.baseText('nodeCreator.noResults.or') }} {{ $locale.baseText('nodeCreator.noResults.webhook') }} {{ $locale.baseText('nodeCreator.noResults.node') }}
diff --git a/packages/editor-ui/src/components/NodeCreator/SubcategoryItem.vue b/packages/editor-ui/src/components/NodeCreator/SubcategoryItem.vue index 547de84dea..024ec2434a 100644 --- a/packages/editor-ui/src/components/NodeCreator/SubcategoryItem.vue +++ b/packages/editor-ui/src/components/NodeCreator/SubcategoryItem.vue @@ -5,7 +5,7 @@ {{ $locale.baseText(`nodeCreator.subcategoryNames.${subcategoryName}`) }}
- {{ $locale.baseText(`nodeCreator.subcategoryDescriptions.${subcategoryDescription}`) }} + {{ $locale.baseText(`nodeCreator.subcategoryDescriptions.${subcategoryName}`) }}
@@ -24,10 +24,6 @@ export default Vue.extend({ subcategoryName() { return camelcase(this.item.properties.subcategory); }, - subcategoryDescription() { - const firstWord = this.item.properties.description.split(' ').shift() || ''; - return firstWord.toLowerCase().replace(/,/g, ''); - }, }, }); diff --git a/packages/editor-ui/src/plugins/i18n/locales/en.json b/packages/editor-ui/src/plugins/i18n/locales/en.json index dd979ce8e9..11e03c0a94 100644 --- a/packages/editor-ui/src/plugins/i18n/locales/en.json +++ b/packages/editor-ui/src/plugins/i18n/locales/en.json @@ -413,6 +413,7 @@ "dontWorryYouCanProbablyDoItWithThe": "Don’t worry, you can probably do it with the", "httpRequest": "HTTP Request", "node": "node", + "or": "or", "requestTheNode": "Request the node", "wantUsToMakeItFaster": "Want us to make it faster?", "weDidntMakeThatYet": "We didn't make that... yet", @@ -422,10 +423,10 @@ "searchNodes": "Search nodes..." }, "subcategoryDescriptions": { - "branches": "Branches, core triggers, merge data", - "http": "HTTP Requests (API calls), date and time, scrape HTML", - "manipulate": "Manipulate data fields, run code", - "work": "Work with CSV, XML, text, images etc." + "dataTransformation": "Manipulate data fields, run code", + "files": "Work with CSV, XML, text, images etc.", + "flow": "Branches, core triggers, merge data", + "helpers": "HTTP Requests (API calls), date and time, scrape HTML" }, "subcategoryNames": { "dataTransformation": "Data Transformation",