mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 07:49: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
|
@ -99,7 +99,7 @@ function ($scope, $state, Volume, Messages, Pagination, ModalService, Authentica
|
|||
angular.forEach($scope.volumes, function (volume) {
|
||||
if (volume.Metadata) {
|
||||
var volumeRC = volume.Metadata.ResourceControl;
|
||||
if (volumeRC && volumeRC.OwnerId != $scope.user.ID) {
|
||||
if (volumeRC && volumeRC.OwnerId !== $scope.user.ID) {
|
||||
angular.forEach(users, function (user) {
|
||||
if (volumeRC.OwnerId === user.Id) {
|
||||
volume.Owner = user.Username;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue