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>
<HeaderToolbar>
<ActionButton
icon={<TbArrowDown size={iconSize} />}
label={<Trans>Next</Trans>}
icon={<TbArrowUp size={iconSize} />}
label={<Trans>Previous</Trans>}
onClick={() =>
dispatch(
selectNextEntry({
selectPreviousEntry({
expand: true,
markAsRead: true,
scrollToEntry: true,
@@ -90,11 +90,11 @@ export function Header() {
}
/>
<ActionButton
icon={<TbArrowUp size={iconSize} />}
label={<Trans>Previous</Trans>}
icon={<TbArrowDown size={iconSize} />}
label={<Trans>Next</Trans>}
onClick={() =>
dispatch(
selectPreviousEntry({
selectNextEntry({
expand: true,
markAsRead: true,
scrollToEntry: true,