fix: made list draggable only by handle

This commit is contained in:
knownotunknown
2024-02-17 12:23:52 -06:00
committed by doprz
parent 4375118cd9
commit cbb190bf4b
3 changed files with 10 additions and 6 deletions

View File

@@ -15,7 +15,7 @@ export const DAY_MAP = {
} as const;
/** A day of the week that a class is taught */
export type Day = typeof DAY_MAP[keyof typeof DAY_MAP];
export type Day = (typeof DAY_MAP)[keyof typeof DAY_MAP];
/** A physical room that a class is taught in */
export type Location = {