summaryrefslogtreecommitdiff
path: root/src/client/app/desktop
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-05-26 21:35:45 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-05-26 21:35:45 +0900
commit4de709fe512b526f72851bafe2bd963bf601451d (patch)
tree5d0ff964b8ce3ffcaa1ee5027393579f86f50bcc /src/client/app/desktop
parentClean up (diff)
downloadsharkey-4de709fe512b526f72851bafe2bd963bf601451d.tar.gz
sharkey-4de709fe512b526f72851bafe2bd963bf601451d.tar.bz2
sharkey-4de709fe512b526f72851bafe2bd963bf601451d.zip
Fix #4990
Diffstat (limited to 'src/client/app/desktop')
-rw-r--r--src/client/app/desktop/views/home/tag.vue13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/client/app/desktop/views/home/tag.vue b/src/client/app/desktop/views/home/tag.vue
index dd4be06a53..343b4ce951 100644
--- a/src/client/app/desktop/views/home/tag.vue
+++ b/src/client/app/desktop/views/home/tag.vue
@@ -17,20 +17,15 @@ import Progress from '../../../common/scripts/loading';
export default Vue.extend({
i18n: i18n('desktop/views/pages/tag.vue'),
- data() {
- return {
- pagination: {
+ computed: {
+ pagination() {
+ return {
endpoint: 'notes/search-by-tag',
limit: 20,
params: {
tag: this.$route.params.tag
}
- }
- };
- },
- watch: {
- $route() {
- this.$refs.timeline.reload();
+ };
}
},
mounted() {