Skip to content

Commit

Permalink
fix(manager): remove duplicate message (#2002)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbruens authored May 1, 2024
1 parent 7a413ca commit 27f579f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions server_manager/messages/master_messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1361,10 +1361,6 @@
"description": "Item in a dropdown menu to select the cloud provider that the user is contacting support about.",
"message": "Google Cloud"
},
"support_form_cloud_provider_other": {
"description": "Item in a dropdown menu to select an unknown cloud provider that the user is contacting support about.",
"message": "Other"
},
"support_form_cloud_provider": {
"description": "Label of a Contact Support form input field.",
"message": "Cloud Provider"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export class OutlineSupportForm extends LitElement {
})
/** We should sort the providers by their labels, which may be localized. */
providers.sort((a, b) => a.label.localeCompare(b.label));
providers.push({value: 'other', label: this.localize('support-form-cloud-provider-other')});
providers.push({value: 'other', label: this.localize('feedback-other')});

return html`
<form ${ref(this.formRef)} @submit=${this.submit}>
Expand Down

0 comments on commit 27f579f

Please sign in to comment.