fix: ToolLog moar logs button condition

This commit is contained in:
axolotle 2024-08-21 18:36:03 +02:00
parent 5ad3738861
commit 6cf9fa3804

View file

@ -45,7 +45,7 @@ const { description, logs, moreLogsAvailable, info } = await api
return { return {
description: log.description, description: log.description,
logs, logs,
moreLogsAvailable: log.logs.length === props.n || 25, moreLogsAvailable: log.logs.length === props.n,
info: { info: {
path: log.log_path, path: log.log_path,
started_at: readableDate(started_at), started_at: readableDate(started_at),