Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Keypress event to catch Enter key on Login page #1198

Closed
wants to merge 20 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
a3e1ff9
Merge pull request #13 from oqtane/dev
leigh-pointer Mar 11, 2021
4feebfa
Merge pull request #15 from leigh-pointer/dev
leigh-pointer Mar 11, 2021
f957ae5
Merge pull request #16 from oqtane/dev
leigh-pointer Mar 11, 2021
a6f3f20
Revert "Fixed issue Event Log strange behavior with the Paging contro…
Mar 11, 2021
678b6b1
Merge pull request #17 from leigh-pointer/main
leigh-pointer Mar 11, 2021
c8c9eb3
Merge pull request #19 from oqtane/dev
leigh-pointer Mar 12, 2021
38eeb9d
Fixes #1180 Multiple Layouts and Containers in a Theme package.
Mar 14, 2021
f236a8e
Merge pull request #21 from oqtane/dev
leigh-pointer Mar 26, 2021
fd2ede9
Added default enter keypress
Mar 26, 2021
efbc924
Revert "Fixes #1180 Multiple Layouts and Containers in a Theme packa…
Mar 26, 2021
69eead0
fix #1156 add defensive coding for scenario where host name does not …
sbwalker Mar 12, 2021
fcfe7be
Fixes #1180 Multiple Layouts and Containers in a Theme package.
Mar 14, 2021
a079d0e
Delete profile should refresh profiles list
hishamco Mar 13, 2021
2dafe1b
Address feedback
hishamco Mar 13, 2021
ce01280
Remove admin border after edit
erw13n Mar 17, 2021
4cc60ef
fix: user delete
Raceeend Mar 13, 2021
83a5543
Added default enter keypress
Mar 26, 2021
83bb6c0
Revert "Fixes #1180 Multiple Layouts and Containers in a Theme packa…
Mar 26, 2021
3ae79c6
Merge branch 'dev' of https://github.com/leigh-pointer/oqtane.framewo…
Mar 27, 2021
06b6fc0
Size column not correctly aligned. Numbers should align right.
Mar 27, 2021
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
Prev Previous commit
Next Next commit
Revert "Fixed issue Event Log strange behavior with the Paging control
…#1158"

This reverts commit b58c738.
  • Loading branch information
Leigh Pointer committed Mar 11, 2021
commit a6f3f204d42cd90afa2c89de87be8a380dab0990
6 changes: 1 addition & 5 deletions Oqtane.Client/Modules/Admin/Logs/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ else

@if (_logs.Any())
{
<Pager TableItem="Log" Items="@_logs">
<Pager Items="@_logs">
<Header>
<th style="width: 1px;">&nbsp;</th>
<th>@Localizer["Date"]</th>
Expand Down Expand Up @@ -141,10 +141,6 @@ else
private async Task GetLogs()
{
_logs = await LogService.GetLogsAsync(PageState.Site.SiteId, ((_level == "-") ? string.Empty : _level), ((_function == "-") ? string.Empty : _function), int.Parse(_rows));
await InvokeAsync(() =>
{
base.StateHasChanged();
});
}

private string GetClass(string function)
Expand Down