Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

correct variable names - these are not dates, but week-of-the-year numbers #8291

Merged
merged 1 commit into from
Jan 8, 2025
Merged
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
8 changes: 4 additions & 4 deletions packages/ilios-common/addon/components/dashboard/week.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { DateTime } from 'luxon';

export default class DashboardWeekComponent extends Component {
get expanded() {
const lastSunday = this.thisThursday.minus({ week: 1 }).toFormat('W');
const thisSunday = this.thisThursday.toFormat('W');
const nextSunday = this.thisThursday.plus({ week: 1 }).toFormat('W');
const lastWeek = this.thisThursday.minus({ week: 1 }).toFormat('W');
const thisWeek = this.thisThursday.toFormat('W');
const nextWeek = this.thisThursday.plus({ week: 1 }).toFormat('W');

return `${lastSunday}-${thisSunday}-${nextSunday}`;
return `${lastWeek}-${thisWeek}-${nextWeek}`;
}

get thisThursday() {
Expand Down
Loading