I have simple SQL query:
SELECT
UNIX_TIMESTAMP(time) AS "time",
exec_status as "Статус"
FROM
monitoring.executions AS executions
WHERE
UNIX_TIMESTAMP(time) BETWEEN UNIX_TIMESTAMP($__timeFrom())
AND UNIX_TIMESTAMP($__timeTo())
AND base_name = '$shop'
AND script = '$script_name'
When there are more than 1 rows, the display is normal. But if there is 1 line, then the panel is empty
How do I display 1 “block” on status history panel?