mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-22 09:15:33 +03:00
Fix 2 history icons conflict
This commit is contained in:
parent
375c4b5d00
commit
8a9f1a3c25
3 changed files with 4 additions and 4 deletions
|
@ -98,7 +98,7 @@ export const ICONS = {
|
|||
media: () => import('@iconify-icons/mingcute/photo-album-line'),
|
||||
speak: () => import('@iconify-icons/mingcute/radar-line'),
|
||||
building: () => import('@iconify-icons/mingcute/building-5-line'),
|
||||
history: () => import('@iconify-icons/mingcute/history-2-line'),
|
||||
history2: () => import('@iconify-icons/mingcute/history-2-line'),
|
||||
document: () => import('@iconify-icons/mingcute/document-line'),
|
||||
'arrows-right': () => import('@iconify-icons/mingcute/arrows-right-line'),
|
||||
code: () => import('@iconify-icons/mingcute/code-line'),
|
||||
|
|
|
@ -182,7 +182,7 @@ function NavMenu(props) {
|
|||
</MenuLink>
|
||||
)}
|
||||
<MenuLink to="/catchup">
|
||||
<Icon icon="history" size="l" />
|
||||
<Icon icon="history2" size="l" />
|
||||
<span>Catch-up</span>
|
||||
</MenuLink>
|
||||
<MenuLink to="/mentions">
|
||||
|
|
|
@ -674,7 +674,7 @@ function Catchup() {
|
|||
<NavMenu />
|
||||
{uiState === 'results' && (
|
||||
<Link to="/catchup" class="button plain">
|
||||
<Icon icon="history" size="l" />
|
||||
<Icon icon="history2" size="l" />
|
||||
</Link>
|
||||
)}
|
||||
{uiState === 'start' && (
|
||||
|
@ -803,7 +803,7 @@ function Catchup() {
|
|||
{prevCatchups.map((pc) => (
|
||||
<li key={pc.id}>
|
||||
<Link to={`/catchup?id=${pc.id}`}>
|
||||
<Icon icon="history" />{' '}
|
||||
<Icon icon="history2" />{' '}
|
||||
<span>
|
||||
{formatRange(
|
||||
new Date(pc.startAt),
|
||||
|
|
Loading…
Reference in a new issue