Skip to content

Commit

Permalink
Update to change partially implemented and work remaining icons
Browse files Browse the repository at this point in the history
  • Loading branch information
nealfennimore committed Dec 7, 2024
1 parent 23b272b commit 274d3d4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ By going through the 800-171 controls, you can generate a markdown file with all
- 🔴 A family, requirement, or security requirement is not implemented.
- ⚫ A family, requirement, or security requirement is not applicable.
- ⚪ A family, requirement, or security requirement has not been started (default).
- 🟤 A family or requirement is partially implemented (some security requirements are implemented and not implemented)
- 🟡 A family or requirement has remaining work.
- 🟡 A family or requirement is partially implemented (some security requirements are implemented and not implemented)
- 🚧 A family or requirement has remaining work.

## Privacy

Expand Down
4 changes: 2 additions & 2 deletions client/src/app/components/status.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const StatusSpan = ({ status }: { status?: Status }) => {
className="text-xl text-black mx-2"
title="Has work remaining"
>
🟡
🚧
</span>
);
case Status.PARTIALLY_IMPLEMENTED:
Expand All @@ -58,7 +58,7 @@ const StatusSpan = ({ status }: { status?: Status }) => {
className="text-xl text-black mx-2"
title="Partially implemented"
>
🟤
🟡
</span>
);
default:
Expand Down

0 comments on commit 274d3d4

Please sign in to comment.