Skip to content

Commit

Permalink
fix dash in server name
Browse files Browse the repository at this point in the history
  • Loading branch information
nimrod-becker committed Jul 27, 2017
1 parent 674ff42 commit aa650b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ class ServerDetailsFormViewModel extends BaseViewModel {
);

const serverName = ko.pureComputed(
() => this.server().hostname + this.server().secret
() => `${this.server().hostname}-${this.server().secret}`
);

const locationTag = ko.pureComputed(
Expand Down

0 comments on commit aa650b5

Please sign in to comment.