Commit b6f081b2 authored by Chunchi Che's avatar Chunchi Che

fix small

parent 456e3b98
Pipeline #28963 passed with stages
in 11 minutes and 53 seconds
...@@ -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