Skip to content
This repository has been archived by the owner on Apr 21, 2022. It is now read-only.

Commit

Permalink
feat: Add a card which supports weeks in increments of a half week
Browse files Browse the repository at this point in the history
  • Loading branch information
hangy committed May 10, 2021
2 parents 5833447 + febfd50 commit aed7052
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions src/model/cards.ts
Original file line number Diff line number Diff line change
Expand Up @@ -331,5 +331,44 @@ export const defaultCardSets: ICardSet[] = [
value: null
}
]
},
{
id: "weeks",
type: CardSetType.Numeric,
name: "Weeks",
cards: [
{
identifier: "0.5",
value: 0.5
},
{
identifier: "1",
value: 1
},
{
identifier: "1.5",
value: 1.5
},
{
identifier: "2",
value: 2
},
{
identifier: "2.5",
value: 2.5
},
{
identifier: "3",
value: 3
},
{
identifier: "3.5",
value: 3.5
},
{
identifier: "4",
value: 4
}
]
}
];

0 comments on commit aed7052

Please sign in to comment.