We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0be84dc commit 56a8bd2Copy full SHA for 56a8bd2
src/Serilog.Ui.Web/wwwroot/dist/main.js
@@ -95,6 +95,8 @@
95
});
96
})(jQuery);
97
98
+let authType;
99
+
100
const routePrefix = {
101
url: "",
102
set setUrl(route) {
@@ -110,11 +112,13 @@ const init = (config) => {
110
112
sessionStorage.removeItem("serilogui_token");
111
113
}
114
115
+ authType = config.authType;
116
117
routePrefix.setUrl = config.routePrefix;
- fetchData(config.authType);
118
+ fetchData();
119
120
-const fetchData = (authType) => {
121
+const fetchData = () => {
122
const tbody = $("#logTable tbody");
123
const page = $("#page").val();
124
const count = $("#count").children("option:selected").val();
0 commit comments