From ff90662be1f74d79f4cffcf0f31f4d166ea312c7 Mon Sep 17 00:00:00 2001 From: proddy Date: Mon, 8 Jun 2026 21:04:19 +0200 Subject: [PATCH] green execute button --- interface/src/app/main/Commands.tsx | 2 +- interface/src/app/main/DevicesDialog.tsx | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/interface/src/app/main/Commands.tsx b/interface/src/app/main/Commands.tsx index b734c6c36..4a20e1c39 100644 --- a/interface/src/app/main/Commands.tsx +++ b/interface/src/app/main/Commands.tsx @@ -131,7 +131,7 @@ const CommandsPage = () => { name: ci.name })) }); - toast.success(LL.UPDATED_OF(LL.COMMANDS(0))); + toast.success(LL.UPDATED_OF(LL.COMMANDS())); } catch (error: unknown) { const message = error instanceof Error ? error.message : String(error); toast.error(message); diff --git a/interface/src/app/main/DevicesDialog.tsx b/interface/src/app/main/DevicesDialog.tsx index 314476024..3b98822d8 100644 --- a/interface/src/app/main/DevicesDialog.tsx +++ b/interface/src/app/main/DevicesDialog.tsx @@ -2,6 +2,7 @@ import { useEffect, useState } from 'react'; import { toast } from 'react-toastify'; import CancelIcon from '@mui/icons-material/Cancel'; +import PlayArrowIcon from '@mui/icons-material/PlayArrow'; import WarningIcon from '@mui/icons-material/Warning'; import { Box, @@ -226,10 +227,12 @@ const DevicesDialog = ({ {LL.CANCEL()}