diff --git a/src/app.jsx b/src/app.jsx index fddd2451c..c8b8b4b39 100644 --- a/src/app.jsx +++ b/src/app.jsx @@ -320,10 +320,15 @@ class Application extends React.Component { switch (event.Action) { /* The following events do not need to trigger any state updates */ case 'attach': + case 'cleanup': case 'exec': case 'export': case 'import': case 'init': + case 'mount': + case 'restart': + case 'sync': + case 'unmount': case 'wait': break; /* The following events need only to update the Container list @@ -343,15 +348,10 @@ class Application extends React.Component { case 'died': case 'exec_died': 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);