mirror of
https://github.com/docker/docs.git
synced 2026-03-27 22:38:54 +07:00
Check for data.id before fetching container data
This commit is contained in:
@@ -338,7 +338,7 @@ export default {
|
||||
|
||||
if (data.status === 'destroy') {
|
||||
containerServerActions.destroyed({id: data.id});
|
||||
} else {
|
||||
} else if (data.id) {
|
||||
this.fetchContainer(data.id);
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user