diff --git a/src/App.jsx b/src/App.jsx index a7a41b3..fd706b5 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -43,9 +43,9 @@ function App() { dataSource={captureList} columns={[ { - title: '视频地址(捕获中……)', - dataIndex: 'url', - key: 'url', + title: '视频标题(捕获中……)', + dataIndex: 'description', + key: 'description', render: value => value, ellipsis: true, }, diff --git a/src/fsm.js b/src/fsm.js index 97bab08..678e85d 100644 --- a/src/fsm.js +++ b/src/fsm.js @@ -218,8 +218,8 @@ export default createMachine( }, }, actions: { - action_视频捕获: actions.assign(({ captureList }, { url, size, description, decode_key, ...other }) => { - captureList.push({ size, url, prettySize: prettyBytes(+size), ...other }); + action_视频捕获: actions.assign(({ captureList }, { url, size, description, decodeKey, ...other }) => { + captureList.push({ size, url, prettySize: prettyBytes(+size), description, decodeKey, ...other }); return { captureList: uniqBy(captureList, 'url'),