Check for data.id before fetching container data

This commit is contained in:
Jeffrey Morgan
2015-06-20 19:05:18 -07:00
parent f8df3b318e
commit 51ec8a7e10

View File

@@ -338,7 +338,7 @@ export default {
if (data.status === 'destroy') {
containerServerActions.destroyed({id: data.id});
} else {
} else if (data.id) {
this.fetchContainer(data.id);
}
});