Skip to content

Commit

Permalink
Merge pull request #10967 from nextcloud/backport/10962/stable26
Browse files Browse the repository at this point in the history
[stable26] fix(settings): Fix Hosted HPB settings UI
  • Loading branch information
nickvergessen committed Nov 22, 2023
2 parents 0b0e171 + ebfb4e5 commit b0f865a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/AdminSettings/HostedSignalingServer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,23 @@
</p>

<template v-if="!trialAccount.status">
<NcTextField v-model="hostedHPBNextcloudUrl"
<NcTextField :value.sync="hostedHPBNextcloudUrl"
class="form__textfield"
name="hosted_hpb_nextcloud_url"
placeholder="https://cloud.example.org/"
:disabled="loading"
:label="t('spreed', 'URL of this Nextcloud instance')"
label-visible />

<NcTextField v-model="hostedHPBFullName"
<NcTextField :value.sync="hostedHPBFullName"
class="form__textfield"
name="full_name"
placeholder="Jane Doe"
:disabled="loading"
:label="t('spreed', 'Full name of the user requesting the trial')"
label-visible />

<NcTextField v-model="hostedHPBEmail"
<NcTextField :value.sync="hostedHPBEmail"
class="form__textfield"
name="hosted_hpb_email"
placeholder="jane@example.org"
Expand Down

0 comments on commit b0f865a

Please sign in to comment.