File tree Expand file tree Collapse file tree
web-app/packages/lib/src/assets/sass/theme-base Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -608,8 +608,9 @@ def get_paginated_projects(
608608 public ,
609609 only_public ,
610610 )
611- result = projects .paginate (page , per_page ).items
612- total = projects .paginate ().total
611+ pagination = projects .paginate (page , per_page )
612+ result = pagination .items
613+ total = pagination .total
613614
614615 # create user map id:username passed to project schema to minimize queries to db
615616 projects_ids = [p .id for p in result ]
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ def get_order_param(
6060 attr = None
6161 order_attr = cls .__table__ .c .get (col , None )
6262 if not isinstance (order_attr , Column ):
63- logging .warning ("Ignoring invalid order parameter." )
63+ logging .warning (f "Ignoring invalid order parameter: { order_param } ." )
6464 return
6565 # sort by key in JSON field
6666 if attr :
Original file line number Diff line number Diff line change 3030@mixin invalid-input () {
3131 border-color : $inputErrorBorderColor ;
3232 background-color : $inputErrorBackgroundColor ;
33- box-shadow : inset 0 0 0 1 px $inputErrorBorderColor ;
33+ box-shadow : inset 0 0 0 2 px $inputErrorBorderColor ;
3434}
3535
3636@mixin menuitem {
You can’t perform that action at this time.
0 commit comments