Skip to content

Commit

Permalink
Merge branch 'master' into daniellacosse/custom_error_details
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellacosse authored May 3, 2024
2 parents d629646 + 27f579f commit 0e5c558
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 0e5c558

Please sign in to comment.