swap next and previous buttons (#1159)

This commit is contained in:
Athou
2023-11-15 07:59:17 +01:00
parent 435d612cbf
commit d7d3574e36

View File

@@ -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,