Skip to content

Commit

Permalink
Fixed none display text
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Krönert authored and Florian Krönert committed Jul 10, 2020
1 parent 794131f commit 5486b90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/Translator/TranslationHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@
fields: [
{ field: 'targetLcid', type: 'list', required: true, options: { items: languageItems } },
{ field: 'sourceLcid', type: 'list', required: true, options: { items: languageItems } },
{ field: 'translateMissing', type: 'list', required: false, options: { items: [{id: "", text: "" }, { id: "missing", text: "All Missing" }, { id: "missingOrIdentical", text: "All Missing Or Identical"}] } }
{ field: 'translateMissing', type: 'list', required: false, options: { items: [{id: "", text: "None" }, { id: "missing", text: "All Missing" }, { id: "missingOrIdentical", text: "All Missing Or Identical"}] } }
],
actions: {
"ok": function () {
Expand Down

0 comments on commit 5486b90

Please sign in to comment.