Skip to content

Commit

Permalink
Fix last remaining reference to the archived property on requests
Browse files Browse the repository at this point in the history
  • Loading branch information
BenGalewsky committed Nov 25, 2024
1 parent fbaf5fa commit f62720a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion servicex_app/servicex_app/web/dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
def dashboard(template_name: str, user_specific=False):
args = parser.parse_args()
sort, order = args["sort"], args["order"]
query = TransformRequest.query.filter_by(archived=False)
query = TransformRequest.query.filter_by()

if user_specific:
query = query.filter_by(submitted_by=session["user_id"])
Expand Down

0 comments on commit f62720a

Please sign in to comment.