mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-01-23 17:16:26 +01: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'),
|
media: () => import('@iconify-icons/mingcute/photo-album-line'),
|
||||||
speak: () => import('@iconify-icons/mingcute/radar-line'),
|
speak: () => import('@iconify-icons/mingcute/radar-line'),
|
||||||
building: () => import('@iconify-icons/mingcute/building-5-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'),
|
document: () => import('@iconify-icons/mingcute/document-line'),
|
||||||
'arrows-right': () => import('@iconify-icons/mingcute/arrows-right-line'),
|
'arrows-right': () => import('@iconify-icons/mingcute/arrows-right-line'),
|
||||||
code: () => import('@iconify-icons/mingcute/code-line'),
|
code: () => import('@iconify-icons/mingcute/code-line'),
|
||||||
|
|
|
@ -182,7 +182,7 @@ function NavMenu(props) {
|
||||||
</MenuLink>
|
</MenuLink>
|
||||||
)}
|
)}
|
||||||
<MenuLink to="/catchup">
|
<MenuLink to="/catchup">
|
||||||
<Icon icon="history" size="l" />
|
<Icon icon="history2" size="l" />
|
||||||
<span>Catch-up</span>
|
<span>Catch-up</span>
|
||||||
</MenuLink>
|
</MenuLink>
|
||||||
<MenuLink to="/mentions">
|
<MenuLink to="/mentions">
|
||||||
|
|
|
@ -674,7 +674,7 @@ function Catchup() {
|
||||||
<NavMenu />
|
<NavMenu />
|
||||||
{uiState === 'results' && (
|
{uiState === 'results' && (
|
||||||
<Link to="/catchup" class="button plain">
|
<Link to="/catchup" class="button plain">
|
||||||
<Icon icon="history" size="l" />
|
<Icon icon="history2" size="l" />
|
||||||
</Link>
|
</Link>
|
||||||
)}
|
)}
|
||||||
{uiState === 'start' && (
|
{uiState === 'start' && (
|
||||||
|
@ -803,7 +803,7 @@ function Catchup() {
|
||||||
{prevCatchups.map((pc) => (
|
{prevCatchups.map((pc) => (
|
||||||
<li key={pc.id}>
|
<li key={pc.id}>
|
||||||
<Link to={`/catchup?id=${pc.id}`}>
|
<Link to={`/catchup?id=${pc.id}`}>
|
||||||
<Icon icon="history" />{' '}
|
<Icon icon="history2" />{' '}
|
||||||
<span>
|
<span>
|
||||||
{formatRange(
|
{formatRange(
|
||||||
new Date(pc.startAt),
|
new Date(pc.startAt),
|
||||||
|
|
Loading…
Reference in a new issue