mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 15:29:42 +02:00
fix(container-logs): add missing dependency to Notifications (#1514)
This commit is contained in:
parent
9c9e16b2b2
commit
c9e060d574
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
angular.module('containerLogs', [])
|
angular.module('containerLogs', [])
|
||||||
.controller('ContainerLogsController', ['$scope', '$transition$', '$anchorScroll', 'ContainerLogs', 'Container',
|
.controller('ContainerLogsController', ['$scope', '$transition$', '$anchorScroll', 'ContainerLogs', 'Container', 'Notifications',
|
||||||
function ($scope, $transition$, $anchorScroll, ContainerLogs, Container) {
|
function ($scope, $transition$, $anchorScroll, ContainerLogs, Container, Notifications) {
|
||||||
$scope.state = {};
|
$scope.state = {};
|
||||||
$scope.state.displayTimestampsOut = false;
|
$scope.state.displayTimestampsOut = false;
|
||||||
$scope.state.displayTimestampsErr = false;
|
$scope.state.displayTimestampsErr = false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue