|
|
@ -55,6 +55,7 @@ async function load() { |
|
|
}) |
|
|
}) |
|
|
const body = await fetchData<{ items: MediaAssetRow[]; total: number }>( |
|
|
const body = await fetchData<{ items: MediaAssetRow[]; total: number }>( |
|
|
`/api/me/media/assets?${q.toString()}`, |
|
|
`/api/me/media/assets?${q.toString()}`, |
|
|
|
|
|
{ notify: false }, |
|
|
) |
|
|
) |
|
|
items.value = body.items |
|
|
items.value = body.items |
|
|
total.value = body.total |
|
|
total.value = body.total |
|
|
|