[frontend/components] Fix off by one error in AttachmentView navigation
This commit is contained in:
parent
8a7bcde0c3
commit
e70cb01c5b
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@
|
||||||
|
|
||||||
private async Task Next()
|
private async Task Next()
|
||||||
{
|
{
|
||||||
if (Focused >= _refs.Count)
|
if (Focused >= _refs.Count -1)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue