Releasing new design #161

Merged
b merged 241 commits from staging into main 2024-08-21 11:38:25 +00:00
Showing only changes of commit 4c04c12403 - Show all commits

View File

@ -34,7 +34,8 @@ const MarkFormField = ({
isCurrentValueLast(currentUserMarks, selectedMark, selectedMarkValue)
const isCurrent = (currentMark: CurrentUserMark) =>
currentMark.id === selectedMark.id
const isDone = (currentMark: CurrentUserMark) => currentMark.isCompleted
const isDone = (currentMark: CurrentUserMark) =>
isCurrent(currentMark) ? !!selectedMarkValue : currentMark.isCompleted
const findNext = () => {
return (
currentUserMarks[selectedMark.id] ||
@ -50,6 +51,9 @@ const MarkFormField = ({
}
return (
<div className={styles.container}>
<div className={styles.trigger}>
<button></button>
</div>
<div className={styles.actions}>
<div className={styles.actionsWrapper}>
<div className={styles.actionsTop}>