Browse Source

bug: fix identity server profile page showing client secret label as "Client id" (#610)

pull/611/head
Alastair Crabtree 5 years ago
committed by GitHub
parent
commit
aa86bbcae1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      backend/src/Squidex/Areas/IdentityServer/Views/Profile/Profile.cshtml

6
backend/src/Squidex/Areas/IdentityServer/Views/Profile/Profile.cshtml

@ -198,14 +198,14 @@
<div class="row no-gutters form-group"> <div class="row no-gutters form-group">
<div class="col-8"> <div class="col-8">
<label for="clientId">Client Id</label> <label for="clientId">@T.Get("common.clientId")</label>
<input class="form-control" name="clientId" id="clientId" readonly value="@Model.Id" /> <input class="form-control" name="clientId" id="clientId" readonly value="@Model.Id" />
</div> </div>
</div> </div>
<div class="row no-gutters form-group"> <div class="row no-gutters form-group">
<div class="col-8"> <div class="col-8">
<label for="clientSecret">@T.Get("common.clientId")</label> <label for="clientSecret">@T.Get("common.clientSecret")</label>
<input class="form-control" name="clientSecret" id="clientSecret" readonly value="@Model.ClientSecret" /> <input class="form-control" name="clientSecret" id="clientSecret" readonly value="@Model.ClientSecret" />
</div> </div>
@ -327,4 +327,4 @@
successMessage.remove(); successMessage.remove();
}, 5000); }, 5000);
} }
</script> </script>

Loading…
Cancel
Save