onOpenLogsDrawer()}>
+
+ {tableData.data?.length > 5 ? (
+
+ }
+ aria-label={t('View more')}
+ size="md"
+ onClick={() => onOpenLogsDrawer()}
+ >
+ {t('View more')}
+
+
+ ) : null}
+
);
}
-function LogsSectionContent({
- tableData,
- openDrawer,
-}: {
- openDrawer: () => void;
- tableData: UseExploreLogsTableResult;
-}) {
- const abbreviatedTableData = {...tableData, data: (tableData.data ?? []).slice(0, 5)};
- return (
-