We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 131d5f4 commit ec688feCopy full SHA for ec688fe
web/pages/settings/index.vue
@@ -723,7 +723,9 @@ export default Vue.extend({
723
this.activeWebhook = {
724
id: webhook.id,
725
url: webhook.url,
726
- phone_numbers: webhook.phone_numbers,
+ phone_numbers: webhook.phone_numbers.filter(
727
+ (x) => this.phoneNumbers.find((y) => y === x) !== undefined
728
+ ),
729
signing_key: webhook.signing_key,
730
events: webhook.events,
731
}
0 commit comments