File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 9
9
- store compressed frontend assets in the SQLPage binary:
10
10
- smaller SQLPage binary
11
11
- Faster page loads, less work on the server
12
+ - Fix a bug where table search would fail to find a row if the search term contained some special characters.
13
+ - Fixes https://github.com/lovasoa/SQLpage/issues/46
12
14
13
15
## 0.9.2 (2023-08-01)
14
16
Original file line number Diff line number Diff line change 1
1
/* !include https://cdn.jsdelivr.net/npm/@tabler/core@1.0.0-beta19/dist/js/tabler.min.js */
2
- /* !include https://cdn.jsdelivr.net/npm/list.js@2.3.1 /dist/list.min.js */
2
+ /* !include https://cdn.jsdelivr.net/npm/list.js-fixed @2.3.2 /dist/list.min.js */
3
3
/* !include https://cdn.jsdelivr.net/npm/apexcharts@3.41.0/dist/apexcharts.min.js */
4
4
5
5
function sqlpage_chart ( ) {
@@ -145,6 +145,7 @@ function sqlpage_table(){
145
145
for ( const r of document . getElementsByClassName ( "data-list" ) ) {
146
146
new List ( r , {
147
147
valueNames : [ ...r . getElementsByTagName ( "th" ) ] . map ( t => t . textContent ) ,
148
+ searchDelay : 100 ,
148
149
indexAsync : true
149
150
} ) ;
150
151
}
You can’t perform that action at this time.
0 commit comments