File tree Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 4343 transition : all 3s ;
4444}
4545.main {
46- position : absolute ;
46+ // position: absolute;
4747 width : 100% ;
4848 height : 100% ;
4949 .unlock-con {
Original file line number Diff line number Diff line change 7676 this .getpage ();
7777 }
7878 async getpage(){
79- let where= Util .buildFilters (this .filters );
79+ let where= Util .buildFilters (this .filters );// TODO@personball fix this sql injection
8080 let pagerequest= new PageRequest ();
8181 pagerequest .maxResultCount = this .pageSize ;
8282 pagerequest .skipCount = (this .currentPage - 1 )* this .pageSize ;
Original file line number Diff line number Diff line change 8989 this .getpage ();
9090 }
9191 async getpage(){
92- let where= Util .buildFilters (this .filters );
92+ let where= Util .buildFilters (this .filters );// TODO@personball fix this sql injection
9393 let pagerequest= new PageRequest ();
9494 pagerequest .maxResultCount = this .pageSize ;
9595 pagerequest .skipCount = (this .currentPage - 1 )* this .pageSize ;
Original file line number Diff line number Diff line change 9595 this .getpage ();
9696 }
9797 async getpage(){
98- let where= Util .buildFilters (this .filters );
98+ let where= Util .buildFilters (this .filters );// TODO@personball fix this sql injection
9999 let pagerequest= new PageRequest ();
100100 pagerequest .maxResultCount = this .pageSize ;
101101 pagerequest .skipCount = (this .currentPage - 1 )* this .pageSize ;
Original file line number Diff line number Diff line change @@ -5,11 +5,14 @@ module.exports = {
55 return {
66 plugins :[
77 new CopyWebpackPlugin ( [ {
8- from :'node_modules/@aspnet/signalr/dist/browser/signalr.min.js'
8+ from :'node_modules/@aspnet/signalr/dist/browser/signalr.min.js' ,
9+ to :'dist'
910 } , {
10- from :'node_modules/abp-web-resources/Abp/Framework/scripts/libs/abp.signalr-client.js'
11+ from :'node_modules/abp-web-resources/Abp/Framework/scripts/libs/abp.signalr-client.js' ,
12+ to :'dist'
1113 } , {
12- from :'src/lib/abp.js'
14+ from :'src/lib/abp.js' ,
15+ to :'dist'
1316 } ] )
1417 ]
1518 }
You can’t perform that action at this time.
0 commit comments