Skip to content

Commit

Permalink
Improve UI for WC clubs' application times
Browse files Browse the repository at this point in the history
  • Loading branch information
aviupadhyayula committed Jan 29, 2025
1 parent 16d3907 commit 7815a47
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions frontend/components/ClubEditPage/ApplicationsCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -323,23 +323,29 @@ export default function ApplicationsCard({ club }: Props): ReactElement {
as={DateTimeField}
required={true}
helpText={`The date when your application opens. ${
club.is_wharton ? 'Read-only.' : ''
club.is_wharton
? 'Since your club is managed by Wharton Council, this field is read-only.'
: ''
}`}
/>
<Field
name="application_end_time"
as={DateTimeField}
required={true}
helpText={`The date when your application closes. ${
club.is_wharton ? 'Read-only.' : ''
club.is_wharton
? 'Since your club is managed by Wharton Council, this field is read-only.'
: ''
}`}
/>
<Field
name="result_release_time"
as={DateTimeField}
required={true}
helpText={`The latest date that your ${OBJECT_NAME_SINGULAR} will be releasing admission results. ${
club.is_wharton ? 'Read-only.' : ''
club.is_wharton
? 'Since your club is managed by Wharton Council, this field is read-only.'
: ''
}`}
/>
<Field
Expand Down

0 comments on commit 7815a47

Please sign in to comment.