mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 18:54:58 +00:00
Updated Component syntax
This commit is contained in:
parent
3bf8ddf376
commit
0ba22df233
1 changed files with 3 additions and 3 deletions
|
|
@ -175,7 +175,7 @@ const DVRPage = () => {
|
|||
{ maxWidth: '36rem', cols: 1 },
|
||||
]}
|
||||
>
|
||||
{RecordingList(inProgress)}
|
||||
{<RecordingList list={inProgress} />}
|
||||
{inProgress.length === 0 && (
|
||||
<Text size="sm" c="dimmed">
|
||||
Nothing recording right now.
|
||||
|
|
@ -197,7 +197,7 @@ const DVRPage = () => {
|
|||
{ maxWidth: '36rem', cols: 1 },
|
||||
]}
|
||||
>
|
||||
{RecordingList(upcoming)}
|
||||
{<RecordingList list={upcoming} />}
|
||||
{upcoming.length === 0 && (
|
||||
<Text size="sm" c="dimmed">
|
||||
No upcoming recordings.
|
||||
|
|
@ -219,7 +219,7 @@ const DVRPage = () => {
|
|||
{ maxWidth: '36rem', cols: 1 },
|
||||
]}
|
||||
>
|
||||
{RecordingList(completed)}
|
||||
{<RecordingList list={completed} />}
|
||||
{completed.length === 0 && (
|
||||
<Text size="sm" c="dimmed">
|
||||
No completed recordings yet.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue