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

This commit is contained in:
syuilo
2022-01-28 01:13:52 +09:00
parent 86931bdafd
commit 2752858c7c
2 changed files with 3 additions and 2 deletions

View File

@ -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;
});
};