Skip to content

Commit

Permalink
Merge pull request #289 from traPtitech/fix/include_edit_account_regi…
Browse files Browse the repository at this point in the history
…stered_services

現在設定してるサービスをselectに含める
  • Loading branch information
mehm8128 authored Jul 2, 2024
2 parents 0d0325b + 66b0b71 commit f060264
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/UserAccountEdit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ if (!account) {
}
const registeredServices = computed(() =>
me.accounts.map(account => account.type)
me.accounts
.map(account => account.type)
.filter(accountType => accountType !== account.type)
)
const formValues = ref<Required<EditUserAccountRequest>>(account)
Expand Down

0 comments on commit f060264

Please sign in to comment.