responsive table now has optional mobile render prop; users now has functional mobile view

This commit is contained in:
Carter 2024-11-26 11:51:11 -06:00
parent 6234f13eb0
commit 3f96724422
5 changed files with 238 additions and 8 deletions

View file

@ -509,7 +509,8 @@ export default function ShareObject(props: Props) {
// inputRef={props => <TextField {...props} helperText="" />}
label="Expiration Date"
value={newLinkExpiration}
onChange={date => setNewLinkExpiration(date as Moment)}
// onChange={(date: moment.Moment) => setNewLinkExpiration(date as Moment)}
onChange={(value) => setNewLinkExpiration(value as Moment)}
disablePast
/>
<FormControlLabel