mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 05:27:37 +03:00
Fix expireAt
update error
This commit is contained in:
parent
40cac5c367
commit
c994ed70ea
1 changed files with 5 additions and 5 deletions
|
@ -1,6 +1,5 @@
|
||||||
import {
|
import {
|
||||||
DateField,
|
DateTimeInput,
|
||||||
DateInput,
|
|
||||||
Edit,
|
Edit,
|
||||||
NumberField,
|
NumberField,
|
||||||
SimpleForm,
|
SimpleForm,
|
||||||
|
@ -8,6 +7,7 @@ import {
|
||||||
} from 'react-admin'
|
} from 'react-admin'
|
||||||
import { shareUrl } from '../utils'
|
import { shareUrl } from '../utils'
|
||||||
import { Link } from '@material-ui/core'
|
import { Link } from '@material-ui/core'
|
||||||
|
import { DateField } from '../common'
|
||||||
|
|
||||||
export const ShareEdit = (props) => {
|
export const ShareEdit = (props) => {
|
||||||
const { id } = props
|
const { id } = props
|
||||||
|
@ -19,14 +19,14 @@ export const ShareEdit = (props) => {
|
||||||
{url}
|
{url}
|
||||||
</Link>
|
</Link>
|
||||||
<TextInput source="description" />
|
<TextInput source="description" />
|
||||||
|
<DateTimeInput source="expiresAt" />
|
||||||
<TextInput source="contents" disabled />
|
<TextInput source="contents" disabled />
|
||||||
<TextInput source="format" disabled />
|
<TextInput source="format" disabled />
|
||||||
<TextInput source="maxBitRate" disabled />
|
<TextInput source="maxBitRate" disabled />
|
||||||
<DateInput source="expiresAt" disabled />
|
|
||||||
<TextInput source="username" disabled />
|
<TextInput source="username" disabled />
|
||||||
<NumberField source="visitCount" disabled />
|
<NumberField source="visitCount" disabled />
|
||||||
<DateField source="lastVisitedAt" disabled />
|
<DateField source="lastVisitedAt" disabled showTime />
|
||||||
<DateField source="createdAt" disabled />
|
<DateField source="createdAt" disabled showTime />
|
||||||
</SimpleForm>
|
</SimpleForm>
|
||||||
</Edit>
|
</Edit>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue