Skip to content

Commit

Permalink
Attempt #2 to fix indentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
nla-manderson committed May 10, 2024
1 parent e4ba69b commit 293720b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions ui/src/pandas/collection/TitleController.java
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,10 @@ public String search(@RequestParam MultiValueMap<String, String> params,
{
Object attribute = request.getSession().getAttribute("titleFilterStickyParams");

if(attribute!=null)
{
return "redirect:/titles?"+attribute.toString();
}
if(attribute!=null)
{
return "redirect:/titles?"+attribute.toString();
}
}

// save the parameters that we want to be sticky
Expand Down
8 changes: 4 additions & 4 deletions ui/src/pandas/collection/WorktraysController.java
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,10 @@ public String gathered(@ModelAttribute("agencyId") Long agencyId, @ModelAttribut
{
Object attribute = request.getSession().getAttribute("qaFilterStickyParams");

if(attribute!=null)
{
return "redirect:/worktrays/gathered?"+attribute.toString();
}
if(attribute!=null)
{
return "redirect:/worktrays/gathered?"+attribute.toString();
}
}

// save the parameters that we want to be sticky
Expand Down

0 comments on commit 293720b

Please sign in to comment.