Skip to content

Commit

Permalink
Change chevron for checklist items
Browse files Browse the repository at this point in the history
Setting to be consistent with asset list and other parts of the app
  • Loading branch information
lrasmus committed Nov 22, 2024
1 parent 7d67295 commit b06ac0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/components/ReproChecklist/ChecklistItem/ChecklistItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
DialogContentText,
DialogTitle,
} from '@mui/material';
import { FaFolderOpen, FaFolderMinus, FaChevronUp, FaChevronDown } from 'react-icons/fa';
import { FaFolderOpen, FaFolderMinus, FaChevronRight, FaChevronDown } from 'react-icons/fa';
import AssetTree from '../../AssetTree/AssetTree';
import AssetUtil from '../../../utils/asset';
import ProjectUtil from '../../../utils/project';
Expand Down Expand Up @@ -197,9 +197,9 @@ function ChecklistItem(props) {
<div className={styles.statementHeader}>
<button className={styles.expandButton}>
{expanded ? (
<FaChevronUp className={styles.chevron} onClick={() => setExpanded(false)} />
<FaChevronDown className={styles.chevron} onClick={() => setExpanded(false)} />
) : (
<FaChevronDown className={styles.chevron} onClick={() => setExpanded(true)} />
<FaChevronRight className={styles.chevron} onClick={() => setExpanded(true)} />
)}
</button>
<span className={styles.statement}>
Expand Down

0 comments on commit b06ac0e

Please sign in to comment.