From 5442bf71e934b0e796e8f460979900091fa757bb Mon Sep 17 00:00:00 2001 From: gl0ryus <96798013+gl0ryus@users.noreply.github.com> Date: Sat, 26 Feb 2022 08:20:39 -0600 Subject: [PATCH] feat(web): logs add description (#145) * feat: add text about only new logs showing * feat: make log window bigger --- web/src/screens/Logs.tsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/web/src/screens/Logs.tsx b/web/src/screens/Logs.tsx index a55ad48..8a5fc56 100644 --- a/web/src/screens/Logs.tsx +++ b/web/src/screens/Logs.tsx @@ -1,5 +1,6 @@ import { useEffect, useRef, useState } from "react"; import { APIClient } from "../api/APIClient"; +import {ExclamationIcon} from "@heroicons/react/solid"; type LogEvent = { time: string; @@ -32,12 +33,19 @@ export const Logs = () => {
-

Logs

+

Logs

+
+
-
+
{logs.map((a, idx) => (

{a.time} @@ -54,4 +62,4 @@ export const Logs = () => {

) -} \ No newline at end of file +}