Skip to content

Commit 661d310

Browse files
authored
Merge pull request #85 from ehibes/master
Missing "!" on pagination last condition
2 parents b62c544 + 28164c8 commit 661d310

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/vue/components/foo/List.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
@click="getPage(view['hydra:next'])">Next</button>
3333
&nbsp;
3434
<button
35-
:disabled="view['hydra:last']"
35+
:disabled="!view['hydra:last']"
3636
type="button"
3737
class="btn btn-basic btn-sm"
3838
@click="getPage(view['hydra:last'])">Last</button>

0 commit comments

Comments
 (0)