Skip to content
This repository has been archived by the owner on Dec 21, 2022. It is now read-only.

Commit

Permalink
fix for username option. username was not shown in the edit field in …
Browse files Browse the repository at this point in the history
…the web interface. related: #51
  • Loading branch information
emre committed Apr 21, 2014
1 parent 80442b1 commit 62ce3df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storm/static/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ function Storm($scope, $http) {
$scope.state.editIndex = index;
$scope.state.action = "edit " + server.host;
$scope.title = server.host;
$scope.uri = urify(server.options.username, server.options.hostname, server.options.port);
$scope.uri = urify(server.options.user, server.options.hostname, server.options.port);
$scope.reset();
server.editing = true;
focus();
Expand Down

0 comments on commit 62ce3df

Please sign in to comment.