Skip to content
This repository has been archived by the owner on Mar 5, 2021. It is now read-only.

Commit

Permalink
Add TODO about dropdownbox for HTTP or HTTPS
Browse files Browse the repository at this point in the history
  • Loading branch information
elisee committed Mar 18, 2019
1 parent 4198964 commit 52739dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/sidebar/AddOrEditServerDialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ export default class AddOrEditServerDialog extends BaseDialog<AddOrEditServerRes
hostnameHeader.style.marginRight = "0.5em";
hostRow.appendChild(hostnameHeader);

// TODO: Add a dropdownbox for HTTP or HTTPS
this.hostnameInputElt = document.createElement("input");
this.hostnameInputElt.placeholder = i18n.t("common:server.hostnamePlaceholder");
this.hostnameInputElt.style.flex = "1 1 0";
this.hostnameInputElt.style.marginRight = "0.5em";
this.hostnameInputElt.required = true;
this.hostnameInputElt.value = options.initialHostnameValue;
// this.hostnameInputElt.placeholder = ;
hostRow.appendChild(this.hostnameInputElt);

// Port
Expand Down

0 comments on commit 52739dc

Please sign in to comment.