Skip to content

Commit

Permalink
Merge pull request #10717 from nextcloud/fix/9384/fix-sip-secret-typo
Browse files Browse the repository at this point in the history
fix(SIPBridge): fix typo when sending shared secret as payload
  • Loading branch information
Antreesy authored Oct 16, 2023
2 parents 1228267 + bd0b335 commit 2df8052
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/components/AdminSettings/SIPBridge.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,13 @@
{{ t('spreed', 'Only users of the following groups can enable SIP in conversations they moderate') }}
</p>

<NcTextField :value="sharedSecret"
<NcTextField :value.sync="sharedSecret"
name="shared-secret"
class="form__textfield additional-top-margin"
:disabled="loading"
:placeholder="t('spreed', 'Shared secret')"
:label="t('spreed', 'Shared secret')"
label-visible
@update:value="updateSecret" />
label-visible />

<label for="dial-in-info" class="form__label additional-top-margin">
{{ t('spreed', 'Dial-in information') }}
Expand Down Expand Up @@ -165,10 +164,6 @@ export default {
this.loading = false
showSuccess(t('spreed', 'SIP configuration saved!'))
},

updateSecret(value) {
this.secret = value
},
},
}
</script>
Expand Down

0 comments on commit 2df8052

Please sign in to comment.