refactor(docker/events): fix null dataset EE-4667 (#9208)

pull/9231/head
matias-portainer 2023-07-19 12:28:07 -03:00 committed by GitHub
parent 4f0f53b9aa
commit 88da28694c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ export function EventsDatatable({ dataset }: { dataset: Array<DockerEvent> }) {
return (
<Datatable
dataset={dataset}
dataset={dataset ?? []}
columns={columns}
settingsManager={tableState}
title="Events"