Commit 5b9a9245 authored by Chunchi Che's avatar Chunchi Che

fix small

parent 456e3b98
Pipeline #28964 passed with stages
in 12 minutes and 25 seconds
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
} }
:global(.ant-drawer-content) { :global(.ant-drawer-content) {
width: 85%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background: #0b0a0a96; background: #0b0a0a96;
......
...@@ -34,8 +34,8 @@ export const ActionHistory: React.FC = () => { ...@@ -34,8 +34,8 @@ export const ActionHistory: React.FC = () => {
> >
<ScrollableArea className={styles.container} maxHeight="var(--height)"> <ScrollableArea className={styles.container} maxHeight="var(--height)">
<div className={styles.timeline}> <div className={styles.timeline}>
{historys.map((history) => ( {historys.map((history, idx) => (
<HistoryItem {...(history as History)} /> <HistoryItem key={idx} {...(history as History)} />
))} ))}
</div> </div>
</ScrollableArea> </ScrollableArea>
......
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