Skip to content
Snippets Groups Projects
Commit 2752858c authored by syuilo's avatar syuilo
Browse files

fix(client): トレンドウィジェットが動作しないのを修正

parent 86931bda
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@
### Bugfixes
- 投稿のNSFW画像を表示したあとにリアクションが更新されると画像が非表示になる問題を修正
- 「クリップ」ページが開かない問題を修正
- トレンドウィジェットが動作しないのを修正
## 12.102.1 (2022/01/27)
### Bugfixes
......
......@@ -52,8 +52,8 @@ const stats = ref([]);
const fetching = ref(true);
const fetch = () => {
os.api('hashtags/trend').then(stats => {
stats.value = stats;
os.api('hashtags/trend').then(res => {
stats.value = res;
fetching.value = false;
});
};
......
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