mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
fix: ToolLog moar logs button condition
This commit is contained in:
parent
5ad3738861
commit
6cf9fa3804
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ const { description, logs, moreLogsAvailable, info } = await api
|
|||
return {
|
||||
description: log.description,
|
||||
logs,
|
||||
moreLogsAvailable: log.logs.length === props.n || 25,
|
||||
moreLogsAvailable: log.logs.length === props.n,
|
||||
info: {
|
||||
path: log.log_path,
|
||||
started_at: readableDate(started_at),
|
||||
|
|
Loading…
Add table
Reference in a new issue