Skip to content

Commit

Permalink
Disable SLC Approve Button temporarily (So as to not to send to SLC b…
Browse files Browse the repository at this point in the history
…y mistake)
  • Loading branch information
bhavberi committed Mar 24, 2024
1 parent 3ee61cb commit 8b75d64
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions src/components/events/EventApproveForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,19 @@ export default function EventApproveForm({ event, members }) {
<Controller
name="SLC"
control={control}
disabled={true}
render={({ field }) => (
<FormControlLabel
control={
<Checkbox {...field} checked={field.value} color="success" />
}
label="Request SLC approval"
/>
<>
<FormControlLabel
control={
<Checkbox {...field} checked={field.value} color="success" />
}
label="Request SLC approval"
/>
<Typography variant="caption" color="textSecondary">
(Coming Soon)
</Typography>
</>
)}
/>
<p></p> {/* For New line */}
Expand Down

0 comments on commit 8b75d64

Please sign in to comment.