Skip to content

Commit

Permalink
fix arrow direction, resort collectors output
Browse files Browse the repository at this point in the history
  • Loading branch information
githubering182 committed Oct 2, 2024
1 parent 740460e commit cfe9db8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend-app/user/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def _get_collectors(
"project_download",
"project_edit"
) \
.order_by("id")
.order_by("username")

return (
collectors if not serialized
Expand Down
2 changes: 1 addition & 1 deletion frontend-app/src/components/common/TableBodySet/index.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Fragment, useState, ReactElement } from 'react';
import Arrow from "../../ui/Arrow";
import './styles.css';
import "./styles.css";

/**
* @param {object} props
Expand Down
3 changes: 2 additions & 1 deletion frontend-app/src/components/common/TableBodySet/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,13 @@
left: 4px;
top: 50%;
margin-right: 8px;
transform: translateY(-50%);
translate: 0 -50%;
}
.icon--flip {
top: initial;
bottom: 50%;
stroke: var(--issBrand);
translate: 0 50%;
}
.iss__stats__table__levelName {
opacity: 0.3;
Expand Down

0 comments on commit cfe9db8

Please sign in to comment.