replace url with video desc

This commit is contained in:
aynakeya 2023-12-01 06:57:00 -08:00
parent 2720364707
commit 40a3bb88ef
2 changed files with 5 additions and 5 deletions

View File

@ -43,9 +43,9 @@ function App() {
dataSource={captureList} dataSource={captureList}
columns={[ columns={[
{ {
title: '视频地址(捕获中……)', title: '视频标题(捕获中……)',
dataIndex: 'url', dataIndex: 'description',
key: 'url', key: 'description',
render: value => value, render: value => value,
ellipsis: true, ellipsis: true,
}, },

View File

@ -218,8 +218,8 @@ export default createMachine(
}, },
}, },
actions: { actions: {
action_视频捕获: actions.assign(({ captureList }, { url, size, description, decode_key, ...other }) => { action_视频捕获: actions.assign(({ captureList }, { url, size, description, decodeKey, ...other }) => {
captureList.push({ size, url, prettySize: prettyBytes(+size), ...other }); captureList.push({ size, url, prettySize: prettyBytes(+size), description, decodeKey, ...other });
return { return {
captureList: uniqBy(captureList, 'url'), captureList: uniqBy(captureList, 'url'),