fix(logs): make button's tooltip correspond to log setting (#3345)

This commit is contained in:
Mozi
2025-04-18 16:07:55 +00:00
committed by GitHub
parent 272a0c916d
commit 2b1d02f0cc
8 changed files with 8 additions and 1 deletions

View File

@@ -81,7 +81,7 @@ const LogPage = () => {
header={
<Box sx={{ display: "flex", alignItems: "center", gap: 2 }}>
<IconButton
title={t("Pause")}
title={t(enableLog ? "Pause" : "Resume")}
size="small"
color="inherit"
onClick={handleToggleLog}