Skip to content

Commit

Permalink
Fix web checks
Browse files Browse the repository at this point in the history
  • Loading branch information
kfaraz committed Dec 4, 2023
1 parent 383eb1d commit 011319e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web-console/src/dialogs/history-dialog/history-dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const HistoryDialog = React.memo(function HistoryDialog(props: HistoryDia

let content: JSX.Element;
if (historyRecords.length === 0) {
content = <div className="no-record">No history records available. Try setting 'druid.audit.destiation=sql' to record config changes in metadata store.</div>;
content = <div className="no-record">No history records available. Try setting &apos;druid.audit.destiation=sql&apos; to record config changes in metadata store.</div>;
} else {
content = (
<Tabs animate renderActiveTabPanelOnly vertical defaultSelectedTabId={0}>
Expand Down

0 comments on commit 011319e

Please sign in to comment.