|
@@ -77,9 +77,7 @@ export default () => {
|
|
|
const params = {
|
|
|
...val,
|
|
|
fileIds: fileList.current
|
|
|
- .map((i: DageFileAPIResponseType) =>
|
|
|
- !!i.response ? i.response.id : i.uid
|
|
|
- )
|
|
|
+ .map((i) => (!!i.response ? i.response.id : i.uid))
|
|
|
.join(),
|
|
|
};
|
|
|
message.info(JSON.stringify(params));
|