1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-25 00:09:40 +02:00

fix(tasks): fix an issue when filtering tasks (#1913)

This commit is contained in:
Anthony Lapenna 2018-05-19 10:47:58 +02:00 committed by GitHub
parent e7e7d73f20
commit 5d3f438288
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View file

@ -11,7 +11,7 @@ angular.module('portainer.docker')
var task = tasks[i];
if (task.ServiceId === service.Id) {
service.Tasks.push(task);
task.Service = service;
task.ServiceName = service.Name;
} else {
otherServicesTasks.push(task);
}