Skip to content

Commit

Permalink
small tweak to terms
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate-Wessel committed Jan 15, 2024
1 parent 568f3dc commit 205cc83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/Sidebar/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ function DaysContainer(){
return (
<FactorContainer>
<BigButton onClick={addDays}>
Create a new day of week selection
Create a new day-of-week selection
</BigButton>
<FactorList factors={data.days}/>
</FactorContainer>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/days.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class Days extends Factor {
this.#days.size == weekend.size
&& [...weekend].every(v => this.#days.has(v))
){
return 'weekend'
return 'weekends'
} else if(this.#days.size > 0){
return daylist
.filter( ({iso}) => this.#days.has(iso) )
Expand Down

0 comments on commit 205cc83

Please sign in to comment.