Skip to content

Commit

Permalink
fix links, clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
josxha committed Oct 23, 2023
1 parent 2493973 commit 12869d5
Show file tree
Hide file tree
Showing 18 changed files with 2 additions and 18 deletions.
1 change: 0 additions & 1 deletion OryAdmin/Components/Pages/Identities/Messages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<h1 class="title">Message Log</h1>
@if (_isLoading)
{
// is loading
<p>Loading data...</p>
}
else
Expand Down
1 change: 0 additions & 1 deletion OryAdmin/Components/Pages/Identities/Messages/View.razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<h1 class="title">View Message</h1>
@if (_isLoading)
{
// is loading
<p>Loading data...</p>
}
else
Expand Down
1 change: 0 additions & 1 deletion OryAdmin/Components/Pages/Identities/Schemas/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<h1 class="title">Identity Schemas</h1>
@if (_isLoading)
{
// is loading
<p>Loading data...</p>
}
else
Expand Down
1 change: 0 additions & 1 deletion OryAdmin/Components/Pages/Identities/Users/Create.razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<h1 class="title">Create Identity</h1>
@if (_isLoading)
{
// is loading
<p>Loading data...</p>
}
else
Expand Down
1 change: 0 additions & 1 deletion OryAdmin/Components/Pages/Identities/Users/Edit.razor
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

@if (_isLoading)
{
// is loading
<p>Loading data...</p>
}
else
Expand Down
1 change: 0 additions & 1 deletion OryAdmin/Components/Pages/Identities/Users/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

@if (_isLoading)
{
// is loading
<p>Loading data...</p>
}
else
Expand Down
1 change: 0 additions & 1 deletion OryAdmin/Components/Pages/Identities/Users/View.razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<h1 class="title">View Identity</h1>
@if (_isLoading)
{
// is loading
<p>Loading data...</p>
}
else
Expand Down
1 change: 0 additions & 1 deletion OryAdmin/Components/Pages/OAuth2/Clients/Edit.razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<h1 class="title">Edit Client</h1>
@if (_isLoading)
{
// is loading
<p>Loading data...</p>
}
else
Expand Down
1 change: 0 additions & 1 deletion OryAdmin/Components/Pages/OAuth2/Clients/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
</div>
@if (_isLoading)
{
// is loading
<p>Loading data...</p>
}
else
Expand Down
1 change: 0 additions & 1 deletion OryAdmin/Components/Pages/OAuth2/Clients/Sessions.razor
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
</div>
@if (_isLoading)
{
// is loading
<p>Loading data...</p>
}
else
Expand Down
1 change: 0 additions & 1 deletion OryAdmin/Components/Pages/OAuth2/Clients/View.razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<h1 class="title">View OAuth 2 Client</h1>
@if (_isLoading)
{
// is loading
<p>Loading data...</p>
}
else
Expand Down
1 change: 0 additions & 1 deletion OryAdmin/Components/Pages/OAuth2/GrantIssuers/Create.razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<h1 class="title">Trust Grant Issuer</h1>
@if (_isLoading)
{
// is loading
<p>Loading data...</p>
}
else
Expand Down
1 change: 0 additions & 1 deletion OryAdmin/Components/Pages/OAuth2/GrantIssuers/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
</div>
@if (_isLoading)
{
// is loading
<p>Loading data...</p>
}
else
Expand Down
1 change: 0 additions & 1 deletion OryAdmin/Components/Pages/Permissions/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<h1 class="title">Permission Namespaces</h1>
@if (_isLoading)
{
// is loading
<p>Loading data...</p>
}
else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
</div>
<div class="mt-5">
<div class="buttons">
<a class="button" href="permissions/@NamespaceName/relationships">
<a class="button" href="permissions/@NamespaceName">
Cancel
</a>
<button type="submit" class="button is-success">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ private async Task SubmitForm()
return;
}

nav.NavigateTo($"permissions/{NamespaceName}/relationships");
nav.NavigateTo($"permissions/{NamespaceName}");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
</div>
@if (_isLoading)
{
// is loading
<p>Loading data...</p>
}
else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<h1 class="title">Permission Tree</h1>
@if (_isLoading)
{
// is loading
<p>Loading data...</p>
}
else
Expand Down

0 comments on commit 12869d5

Please sign in to comment.