Skip to content

Commit

Permalink
fixing spec tests
Browse files Browse the repository at this point in the history
  • Loading branch information
almorbah committed Oct 25, 2024
1 parent 2870721 commit f762d04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/serializers/saved_search_serializer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ class SavedSearchSerializer
object.user.css_id
end
attribute :userFullName do |object|
object&.user.full_name
object.user.full_name
end
attribute :userId do |object|
object&.user.id
object.user.id
end
end
2 changes: 1 addition & 1 deletion client/app/nonComp/pages/ReportPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ const ReportPage = ({ history }) => {
>
<div className="report-page-header">
<h1>Generate task report</h1>
<Link button="secondary" to={`/${businessLineUrl}/saved_searches`}>View saved searches</Link>
<Link button="secondary" to={`/${businessLineUrl}/report/searches`}>View saved searches</Link>
</div>
<FormProvider {...methods}>
<form>
Expand Down

0 comments on commit f762d04

Please sign in to comment.