Skip to content

Commit

Permalink
Merged main
Browse files Browse the repository at this point in the history
  • Loading branch information
CGoodwin90 committed Mar 1, 2024
1 parent 3002e89 commit 9fb7eda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/LogViewer/LogAccordion/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { StyledLogAccordion, StyledWarningIcon } from '../StyledLogViewer';
const LogAccordion = forwardRef(
({ children, onToggle, header, className = '', defaultValue = false, metadata = ['', false] }, ref) => {
const hasWarning = metadata[1] === true;
if (hasWarning) defaultValue = true
if (hasWarning) defaultValue = true;

const logsTopRef = useRef(null);
const logsEndRef = useRef(null);
Expand Down

0 comments on commit 9fb7eda

Please sign in to comment.