Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add aria labels
  • Loading branch information
presleyp committed Dec 20, 2022
commit 7743fa035bf149598db7d9b9718c92ba6ef470f6
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ export const WorkspaceScheduleButton: React.FC<
<span className={styles.actions}>
<IconButton
className={styles.subtractButton}
aria-label="Subtract hours from deadline"
size="small"
disabled={!deadlineMinusEnabled}
onClick={() => {
Expand All @@ -119,6 +120,7 @@ export const WorkspaceScheduleButton: React.FC<
</IconButton>
<IconButton
className={styles.addButton}
aria-label="Add hours to deadline"
size="small"
disabled={!deadlinePlusEnabled}
onClick={() => {
Expand Down