feat: replace our home-grown gantt implementation with ganttastic #2180

Merged
konrad merged 78 commits from feature/ganttastic into main 2022-10-27 16:03:27 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 8dea4082bb - Show all commits

View File

@ -1,5 +1,5 @@
export function parseBooleanProp(booleanProp: string) {
export function parseBooleanProp(booleanProp: string | undefined) {
return (booleanProp === 'false' || booleanProp === '0')
? false
: Boolean(booleanProp)
: Boolean(booleanProp)
}