diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2021-07-21 13:06:14 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2021-07-21 13:06:14 -0500 |
| commit | 6b62ec8b22736dc1620377f7abb6b6558117142b (patch) | |
| tree | b0cb7bda252171ba7b7e33d75f4971e13b55f92b /pages | |
| parent | 4c972aba53fff163cdac741af95bd0374f117835 (diff) | |
Add a code scroll bar for small UIs
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/logs/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/logs/index.tsx b/pages/logs/index.tsx index fa74aa4..a10fdee 100644 --- a/pages/logs/index.tsx +++ b/pages/logs/index.tsx @@ -23,7 +23,7 @@ const Logs : FC<Props> = ({ posts }) => { <ul className={styles.logList}> { posts.map(({ directory, meta }) => ( - <li><a href={'/logs/' + directory}>{meta.name}</a></li> + <li key={directory}><a href={'/logs/' + directory}>{meta.name}</a></li> )) } </ul> |
