Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Pages/Apis.razor
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

<Row>
<Column ColumnSize="ColumnSize.Is12">
@* TODO: Convert this grid to paginated ReadData to avoid loading all records in memory. *@
<DataGrid TItem="APIToken"
Data="@_apiTokens"
Editable="true"
Expand Down
11 changes: 0 additions & 11 deletions src/Pages/Index.razor

This file was deleted.

4 changes: 0 additions & 4 deletions src/Pages/Index.razor.css

This file was deleted.

1 change: 1 addition & 0 deletions src/Pages/Keys.razor
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

<Row>
<Column ColumnSize="ColumnSize.Is12">
@* TODO: Convert this grid to paginated ReadData to avoid loading all records in memory. *@
<DataGrid TItem="Key"
Data="@userKeys"
Editable="true"
Expand Down
2 changes: 2 additions & 0 deletions src/Pages/Nodes.razor
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

<Row>
<Column ColumnSize="ColumnSize.Is12">
@* TODO: Convert this grid to paginated ReadData to avoid loading all records in memory. *@
<DataGrid TItem="Node"
Data="@_nodes"
Editable="@_editable"
Expand Down Expand Up @@ -194,6 +195,7 @@
<CloseButton />
</ModalHeader>
<ModalBody>
@* TODO: Convert this grid to paginated ReadData to avoid loading all records in memory. *@
<DataGrid TItem="ApplicationUser"
Data=@_selectedNode?.Users
Sortable="false"
Expand Down
1 change: 1 addition & 0 deletions src/Pages/Wallets.razor
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@page "/"
@page "/wallets"
@using System.Security.Claims
@using System.Linq;
Expand Down
Loading