diff --git a/src/app.jsx b/src/app.jsx index b2755cd4d..d97211ec9 100644 --- a/src/app.jsx +++ b/src/app.jsx @@ -331,9 +331,16 @@ class Application extends React.Component { /* The following events do not need to trigger any state updates */ case 'attach': case 'exec': + case 'exec_died': case 'export': case 'import': case 'init': + case 'kill': + case 'mount': + case 'prune': + case 'restart': + case 'sync': + case 'unmount': case 'wait': break; /* The following events need only to update the Container list @@ -349,20 +356,13 @@ class Application extends React.Component { ).then(() => this.updateContainer(id, system, event)); break; case 'checkpoint': + case 'cleanup': case 'create': case 'died': - case 'exec_died': case 'health_status': - case 'kill': - case 'cleanup': - case 'mount': case 'pause': - case 'prune': - case 'restart': case 'restore': case 'stop': - case 'sync': - case 'unmount': case 'unpause': case 'rename': // rename event is available starting podman v4.1; until then the container does not get refreshed after renaming this.updateContainer(id, system, event);