Commit c1da4bcc authored by TZW's avatar TZW

bug

parent 37b71cd9
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: Li Hanlin * @Author: Li Hanlin
* @Date: 2022-11-10 09:39:56 * @Date: 2022-11-10 09:39:56
* @Last Modified by: Li Hanlin * @Last Modified by: Li Hanlin
* @Last Modified time: 2022-12-20 11:25:48 * @Last Modified time: 2022-12-20 11:27:01
*/ */
import * as React from 'react'; import * as React from 'react';
...@@ -154,7 +154,9 @@ function Model(props) { ...@@ -154,7 +154,9 @@ function Model(props) {
{row?.urlIds.map((it) => ( {row?.urlIds.map((it) => (
// eslint-disable-next-line react/jsx-key // eslint-disable-next-line react/jsx-key
<div style={{ marginBottom: '8px' }}> <div style={{ marginBottom: '8px' }}>
<Image width={80} src={it.url} /> <a href={it?.url} download target="_blank" rel="noopener noreferrer">
{it?.name}
</a>
</div> </div>
))} ))}
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment