File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
services/static-webserver/client/source/class/osparc/desktop/credits Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,16 +29,16 @@ qx.Class.define("osparc.desktop.credits.DateFilters", {
2929 this . __from = this . __addDateInput ( "From" , defaultFrom ) ;
3030 this . __until = this . __addDateInput ( "Until" , defaultTo ) ;
3131
32- const lastDayBtn = new qx . ui . form . Button ( "Today" ) . set ( {
32+ const todayBtn = new qx . ui . form . Button ( "Today" ) . set ( {
3333 allowStretchY : false ,
3434 alignY : "bottom"
3535 } ) ;
36- lastDayBtn . addListener ( "execute" , ( ) => {
36+ todayBtn . addListener ( "execute" , ( ) => {
3737 const today = new Date ( ) ;
3838 this . __from . setValue ( today ) ;
3939 this . __until . setValue ( today ) ;
4040 } ) ;
41- this . _add ( lastDayBtn ) ;
41+ this . _add ( todayBtn ) ;
4242
4343 const lastWeekBtn = new qx . ui . form . Button ( "Last week" ) . set ( {
4444 allowStretchY : false ,
You can’t perform that action at this time.
0 commit comments