Skip to content

Commit

Permalink
feat : apply feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
SamTheKorean committed Jan 12, 2025
1 parent 9adbb7d commit e14b5d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Sidebar/Sidebar.module.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
aside {
display: flex;
z-index: var(--z-index-aside);
flex-direction: column-reverse;
@media (min-width: 1080px) {
position: sticky;
z-index: var(--z-index-aside);
top: 87px;
flex-direction: column;
max-width: 203px;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Table/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function Table({
}

function getTaskIcon(completed: boolean) {
const iconClass = completed ? styles.completedIcon : styles.incompleteIcon;
const iconClass = `${completed ? styles.completedIcon : styles.incompleteIcon}`;

return (
<img
Expand Down

0 comments on commit e14b5d6

Please sign in to comment.