Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions web-ui/src/app.d.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,16 @@
* @typedef {MemberProfile} PDLProfile
* @property {string} pdlId
*/

/**
* Check-In related types
*
* @typedef {Object} Checkin
* @property {string} id - The ID of the check-in.
* @property {boolean} completed - Indicates whether the check-in is completed.
* @property {Array} checkinDate - The date of the check-in.
* @property {string} pdlId - The ID of the PDL.
* @property {string} teamMemberId - The ID of the team member.
*
* @typedef {("Done" | "In Progress" | "Not Started")} CheckinStatus
*/
3 changes: 2 additions & 1 deletion web-ui/src/components/member_selector/MemberSelector.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ const MemberSelector = ({
selected,
onChange,
title = 'Selected Members',
expand = true,
outlined = false,
exportable = false,
listHeight = 400,
Expand All @@ -84,7 +85,7 @@ const MemberSelector = ({
const csrf = selectCsrfToken(state);

const [dialogOpen, setDialogOpen] = useState(false);
const [expanded, setExpanded] = useState(true);
const [expanded, setExpanded] = useState(expand);
const [menuAnchor, setMenuAnchor] = useState(null);
const [filters, setFilters] = useState(initialFilters);

Expand Down
49 changes: 0 additions & 49 deletions web-ui/src/components/reports-section/CheckinReport.css

This file was deleted.

Loading