Skip to content

Commit

Permalink
Merge branch 'develop' into feat461-agent-support
Browse files Browse the repository at this point in the history
  • Loading branch information
deviantony committed Mar 27, 2018
2 parents 04cad9d + b2b685b commit d4a80cb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/docker/views/services/edit/serviceController.js
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,7 @@ function ($q, $scope, $transition$, $state, $location, $timeout, $anchorScroll,
service.RestartDelay = ServiceHelper.translateNanosToHumanDuration(service.RestartDelay) || '5s';
service.RestartWindow = ServiceHelper.translateNanosToHumanDuration(service.RestartWindow) || '0s';
service.UpdateDelay = ServiceHelper.translateNanosToHumanDuration(service.UpdateDelay) || '0s';
service.StopGracePeriod = service.StopGracePeriod ? ServiceHelper.translateNanosToHumanDuration(service.StopGracePeriod) : '';
}

function initView() {
Expand Down
4 changes: 4 additions & 0 deletions assets/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,10 @@ a[ng-click]{
font-weight: normal;
}

.widget .widget-body table tbody td {
white-space: nowrap;
}

.template-widget {
height: 100%;
}
Expand Down

0 comments on commit d4a80cb

Please sign in to comment.