mirror of
https://github.com/portainer/portainer.git
synced 2025-07-21 22:39:41 +02:00
fix(jshint): fix lint issues
This commit is contained in:
parent
9f12cbd43d
commit
631b29eddc
3 changed files with 3 additions and 3 deletions
|
@ -47,7 +47,7 @@ angular.module('containers', [])
|
|||
angular.forEach($scope.containers, function (container) {
|
||||
if (container.Metadata) {
|
||||
var containerRC = container.Metadata.ResourceControl;
|
||||
if (containerRC && containerRC.OwnerId != $scope.user.ID) {
|
||||
if (containerRC && containerRC.OwnerId !== $scope.user.ID) {
|
||||
angular.forEach(users, function (user) {
|
||||
if (containerRC.OwnerId === user.Id) {
|
||||
container.Owner = user.Username;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue