fix(docker-event-display): support the exec exited event type (#5990)

Signed-off-by: Sven Dowideit <sven.dowideit@portainer.io>
pull/6081/head
Sven Dowideit 3 years ago committed by GitHub
parent 7d92aa1971
commit 22b72fb6e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -69,6 +69,8 @@ function createEventDetails(event) {
details = 'Exec instance created';
} else if (event.Action.indexOf('exec_start') === 0) {
details = 'Exec instance started';
} else if (event.Action.indexOf('exec_die') === 0) {
details = 'Exec instance exited ';
} else {
details = 'Unsupported event';
}

Loading…
Cancel
Save