Skip to content

Commit

Permalink
Fix dashboard name saving, closes #78
Browse files Browse the repository at this point in the history
  • Loading branch information
Rashid Khan committed Apr 30, 2014
1 parent f1e05df commit 8c5cc95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/kibana/apps/dashboard/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ define(function (require) {
$scope.$watchCollection('timefilter.time', $scope.refresh);

$scope.save = function () {
dash.title = dash.id = $state.title;
$state.title = dash.id = dash.title;
$state.commit();
dash.panelsJSON = JSON.stringify($state.panels);

dash.save()
Expand Down

0 comments on commit 8c5cc95

Please sign in to comment.