mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
swap next and previous buttons (#1159)
This commit is contained in:
@@ -77,11 +77,11 @@ export function Header() {
|
|||||||
<Center>
|
<Center>
|
||||||
<HeaderToolbar>
|
<HeaderToolbar>
|
||||||
<ActionButton
|
<ActionButton
|
||||||
icon={<TbArrowDown size={iconSize} />}
|
icon={<TbArrowUp size={iconSize} />}
|
||||||
label={<Trans>Next</Trans>}
|
label={<Trans>Previous</Trans>}
|
||||||
onClick={() =>
|
onClick={() =>
|
||||||
dispatch(
|
dispatch(
|
||||||
selectNextEntry({
|
selectPreviousEntry({
|
||||||
expand: true,
|
expand: true,
|
||||||
markAsRead: true,
|
markAsRead: true,
|
||||||
scrollToEntry: true,
|
scrollToEntry: true,
|
||||||
@@ -90,11 +90,11 @@ export function Header() {
|
|||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
<ActionButton
|
<ActionButton
|
||||||
icon={<TbArrowUp size={iconSize} />}
|
icon={<TbArrowDown size={iconSize} />}
|
||||||
label={<Trans>Previous</Trans>}
|
label={<Trans>Next</Trans>}
|
||||||
onClick={() =>
|
onClick={() =>
|
||||||
dispatch(
|
dispatch(
|
||||||
selectPreviousEntry({
|
selectNextEntry({
|
||||||
expand: true,
|
expand: true,
|
||||||
markAsRead: true,
|
markAsRead: true,
|
||||||
scrollToEntry: true,
|
scrollToEntry: true,
|
||||||
|
|||||||
Reference in New Issue
Block a user