From 40a3bb88ef52891814780c28a5943a79c9332ffb Mon Sep 17 00:00:00 2001 From: aynakeya Date: Fri, 1 Dec 2023 06:57:00 -0800 Subject: [PATCH] replace url with video desc --- src/App.jsx | 6 +++--- src/fsm.js | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) 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'),