summaryrefslogtreecommitdiff
path: root/frontend/src/components/logviewer/LogList.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/logviewer/LogList.tsx')
-rw-r--r--frontend/src/components/logviewer/LogList.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/logviewer/LogList.tsx b/frontend/src/components/logviewer/LogList.tsx
index b536fd02..01aae45f 100644
--- a/frontend/src/components/logviewer/LogList.tsx
+++ b/frontend/src/components/logviewer/LogList.tsx
@@ -24,7 +24,7 @@ const LogList: FC<{ plugin: string }> = ({ plugin }) => {
{logList.map((log_file) => (
<DialogButton
style={{ marginBottom: "0.5rem" }}
- onOKActionDescription={t("LogViewer.viewLog", "View Log")}
+ onOKActionDescription={t("LogViewer.viewLog")}
onOKButton={() =>
showModal(
<LogViewModal name={log_file} plugin={plugin}></LogViewModal>,