Skip to content
Snippets Groups Projects
Unverified Commit 9aa24c05 authored by syuilo's avatar syuilo
Browse files

🎨

parent 47bf06f4
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@ ChangeLog
10.87.4
----------
* フォローリクエストを許可するときにエラーになる問題を修正
* デザインの調整
10.87.3
----------
......
......@@ -9,7 +9,7 @@
</div>
</ui-container>
<ui-container :body-togglable="true">
<ui-container :body-togglable="true" ref="tags">
<template #header><fa :icon="faHashtag" fixed-width/>{{ $t('popular-tags') }}</template>
<div class="vxjfqztj">
......@@ -114,6 +114,12 @@ export default Vue.extend({
},
},
watch: {
tag() {
if (this.$refs.tags) this.$refs.tags.toggleContent(this.tag == null);
}
},
created() {
this.$root.api('hashtags/list', {
sort: '+attachedLocalUsers',
......
......@@ -40,6 +40,11 @@ export default Vue.extend({
return {
showBody: true
};
},
methods: {
toggleContent(show: boolean) {
this.showBody = show;
}
}
});
</script>
......
......@@ -35,6 +35,11 @@ export default Vue.extend({
return {
showBody: true
};
},
methods: {
toggleContent(show: boolean) {
this.showBody = show;
}
}
});
</script>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment