Skip to content

Commit

Permalink
fix(frontend): 「フォロー中の人全員の返信を含める/含めないようにする」のボタンを押下した際の確認が機能していない問題を修正 (
Browse files Browse the repository at this point in the history
…#12308)

* fix(frontend): 「フォロー中の人全員の返信を含める/含めないようにする」のボタンを押下した際の確認が機能していない問題を修正

* Update CHANGELOG.md
  • Loading branch information
zyoshoka authored Nov 11, 2023
1 parent 0dd3cac commit cec0296
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

### Client
- Fix: アイコンデコレーションが複数の場所で見切れている問題を修正
― Fix: 「フォロー中の人全員の返信を含める/含めないようにする」のボタンを押下した際の確認が機能していない問題を修正

### Server
- Fix: トークンのないプラグインをアンインストールするときにエラーが出ないように
Expand Down
5 changes: 3 additions & 2 deletions packages/frontend/src/pages/settings/other.vue
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,13 @@ async function reloadAsk() {
}

async function updateRepliesAll(withReplies: boolean) {
const { canceled } = os.confirm({
const { canceled } = await os.confirm({
type: 'warning',
text: withReplies ? i18n.ts.confirmShowRepliesAll : i18n.ts.confirmHideRepliesAll,
});
if (canceled) return;
await os.api('following/update-all', { withReplies });

os.api('following/update-all', { withReplies });
}

watch([
Expand Down

0 comments on commit cec0296

Please sign in to comment.