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 @@
}
:global(.ant-drawer-content) {
width: 85%;
display: flex;
flex-direction: column;
background: #0b0a0a96;
......
......@@ -34,8 +34,8 @@ export const ActionHistory: React.FC = () => {
>
<ScrollableArea className={styles.container} maxHeight="var(--height)">
<div className={styles.timeline}>
{historys.map((history) => (
<HistoryItem {...(history as History)} />
{historys.map((history, idx) => (
<HistoryItem key={idx} {...(history as History)} />
))}
</div>
</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