diff --git a/client/src/components/Logs/index.js b/client/src/components/Logs/index.js
index 5c1db03c..d9cd3bfa 100644
--- a/client/src/components/Logs/index.js
+++ b/client/src/components/Logs/index.js
@@ -373,7 +373,7 @@ class Logs extends Component {
{enabled && isDataReady && this.renderLogs(queryLogs.logs)}
{!enabled && isDataReady && (
- link]}>
+ link]}>
query_log_disabled
diff --git a/client/src/components/Settings/LogsConfig/index.js b/client/src/components/Settings/LogsConfig/index.js
index 3c7b0a47..8b519827 100644
--- a/client/src/components/Settings/LogsConfig/index.js
+++ b/client/src/components/Settings/LogsConfig/index.js
@@ -12,7 +12,7 @@ class LogsConfig extends Component {
this.props.setLogsConfig(values);
}, DEBOUNCE_TIMEOUT);
- handleLogsClear = () => {
+ handleClear = () => {
const { t, clearLogs } = this.props;
// eslint-disable-next-line no-alert
if (window.confirm(t('query_log_confirm_clear'))) {
@@ -29,7 +29,7 @@ class LogsConfig extends Component {