Skip to content

Commit aa650b5

Browse files
committed
fix dash in server name
1 parent 674ff42 commit aa650b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/app/components/server/server-details-form/server-details-form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ class ServerDetailsFormViewModel extends BaseViewModel {
158158
);
159159

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

164164
const locationTag = ko.pureComputed(

0 commit comments

Comments
 (0)