add entity logs verb (#14170)

This commit is contained in:
Chief-Engineer
2023-02-18 19:00:17 -06:00
committed by GitHub
parent cb8b12ab60
commit e29a3874b8
6 changed files with 83 additions and 0 deletions

View File

@@ -137,6 +137,15 @@ public sealed class AdminLogsEui : BaseEui
LogsControl.NextButton.Disabled = !newLogs.HasNext;
break;
case SetLogFilter setLogFilter:
if (setLogFilter.Search != null)
LogsControl.LogSearch.SetText(setLogFilter.Search);
if (setLogFilter.Types != null)
LogsControl.SetTypesSelection(setLogFilter.Types, setLogFilter.InvertTypes);
break;
}
}