diff --git a/frontend/src/views/Share.vue b/frontend/src/views/Share.vue index 584cb5ff..bad206ca 100644 --- a/frontend/src/views/Share.vue +++ b/frontend/src/views/Share.vue @@ -128,7 +128,11 @@ readOnly > -
+

+ {{ req.items.length - showLimit }}

@@ -192,14 +196,18 @@ export default { }, data: () => ({ error: null, - showLimit: 500, + showLimit: 100, password: "", attemptedPasswordLogin: false, hash: null, token: null, }), watch: { - $route: "fetchData", + $route: function () { + this.showLimit = 100; + + this.fetchData(); + }, }, created: async function () { const hash = this.$route.params.pathMatch.split("/")[0];