Skip to content

Commit

Permalink
Feat: add possibility to change state to lost in project page (#500)
Browse files Browse the repository at this point in the history
  • Loading branch information
idamand committed Jun 24, 2024
1 parent 7aaa12a commit 89920b0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions frontend/src/components/ChangeEngagementState.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,13 @@ export default function ChangeEngagementState({
checked={engagementState === EngagementState.Closed}
onChange={(e) => handleChange(e.target.value as EngagementState)}
/>
<FilterButton
label="Tapt"
rounded={true}
value={EngagementState.Lost}
checked={engagementState === EngagementState.Lost}
onChange={(e) => handleChange(e.target.value as EngagementState)}
/>
</form>
);
}

0 comments on commit 89920b0

Please sign in to comment.