fixed logs bulk selection
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
## v0.38.3 (WIP)
|
||||||
|
|
||||||
|
- Fixed logs bulk selection export.
|
||||||
|
|
||||||
|
|
||||||
## v0.38.2
|
## v0.38.2
|
||||||
|
|
||||||
- Added `RealtimeConnectRequestEvent.MaxTimeout` field to specify the absolute max duration a realtime connection can remain open (default to 30mins).
|
- Added `RealtimeConnectRequestEvent.MaxTimeout` field to specify the absolute max duration a realtime connection can remain open (default to 30mins).
|
||||||
|
|||||||
@@ -12,4 +12,4 @@ PB_DOCS_URL = "https://pocketbase.io/docs"
|
|||||||
PB_JS_SDK_URL = "https://github.com/pocketbase/js-sdk"
|
PB_JS_SDK_URL = "https://github.com/pocketbase/js-sdk"
|
||||||
PB_DART_SDK_URL = "https://github.com/pocketbase/dart-sdk"
|
PB_DART_SDK_URL = "https://github.com/pocketbase/dart-sdk"
|
||||||
PB_RELEASES = "https://github.com/pocketbase/pocketbase/releases"
|
PB_RELEASES = "https://github.com/pocketbase/pocketbase/releases"
|
||||||
PB_VERSION = "v0.38.2"
|
PB_VERSION = "v0.38.3-dev"
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
<!-- prism -->
|
<!-- prism -->
|
||||||
<script src="./libs/prism/prism.js" data-manual></script>
|
<script src="./libs/prism/prism.js" data-manual></script>
|
||||||
<script type="module" crossorigin src="./assets/index-B2xHaK_e.js"></script>
|
<script type="module" crossorigin src="./assets/index-GZvwkYso.js"></script>
|
||||||
<link rel="modulepreload" crossorigin href="./assets/pocketbase.es-B_4DUNUU.js">
|
<link rel="modulepreload" crossorigin href="./assets/pocketbase.es-B_4DUNUU.js">
|
||||||
<link rel="stylesheet" crossorigin href="./assets/index-Cbzik3Gc.css">
|
<link rel="stylesheet" crossorigin href="./assets/index-Cbzik3Gc.css">
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
@@ -349,7 +349,7 @@ export function logsList(logsSettings) {
|
|||||||
JSON.stringify(data.bulkSelected),
|
JSON.stringify(data.bulkSelected),
|
||||||
);
|
);
|
||||||
if (e.target.checked) {
|
if (e.target.checked) {
|
||||||
bulkSelected[log.id] = true;
|
bulkSelected[log.id] = log;
|
||||||
} else {
|
} else {
|
||||||
delete bulkSelected[log.id];
|
delete bulkSelected[log.id];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user