Skip to content
This repository was archived by the owner on Jul 15, 2022. It is now read-only.

Commit 929a639

Browse files
author
Leonardo Chaia
committed
fix: fixes container list not being updated when a container is created
1 parent 60c79a7 commit 929a639

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/app/daemon-tools/container-list/container-list.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class ContainerListComponent implements OnInit, OnDestroy {
3434

3535
public ngOnInit() {
3636

37-
this.daemonEvents.bindAll(['destroy', 'start', 'stop', 'pause', 'unpause', 'restart', 'update'], 'container')
37+
this.daemonEvents.bindAll(['create', 'destroy', 'start', 'stop', 'pause', 'unpause', 'restart', 'update'], 'container')
3838
.pipe(takeUntil(this.componetDestroyed))
3939
.subscribe(() => {
4040
this.reload();

0 commit comments

Comments
 (0)