fix(client): トレンドウィジェットが動作しないのを修正
This commit is contained in:
parent
86931bdafd
commit
2752858c7c
|
@ -14,6 +14,7 @@
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
- 投稿のNSFW画像を表示したあとにリアクションが更新されると画像が非表示になる問題を修正
|
- 投稿のNSFW画像を表示したあとにリアクションが更新されると画像が非表示になる問題を修正
|
||||||
- 「クリップ」ページが開かない問題を修正
|
- 「クリップ」ページが開かない問題を修正
|
||||||
|
- トレンドウィジェットが動作しないのを修正
|
||||||
|
|
||||||
## 12.102.1 (2022/01/27)
|
## 12.102.1 (2022/01/27)
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
|
|
|
@ -52,8 +52,8 @@ const stats = ref([]);
|
||||||
const fetching = ref(true);
|
const fetching = ref(true);
|
||||||
|
|
||||||
const fetch = () => {
|
const fetch = () => {
|
||||||
os.api('hashtags/trend').then(stats => {
|
os.api('hashtags/trend').then(res => {
|
||||||
stats.value = stats;
|
stats.value = res;
|
||||||
fetching.value = false;
|
fetching.value = false;
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue