mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 00:36:39 +00:00
[chore]: rdelete unused refs
This commit is contained in:
parent
f043ac76ba
commit
429ace34bb
4 changed files with 3 additions and 3 deletions
|
|
@ -57,3 +57,4 @@
|
|||
- [ ] Query project members in UserPage
|
||||
- [ ] Query progression info in UserPage
|
||||
- [ ] Add info fields in New Ticket Form
|
||||
- [ ] Filter users in Users Modal
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ const TicketCard: FC<IProps> = ({
|
|||
return (
|
||||
<Typography variant="body2" component="p">
|
||||
<span>
|
||||
Due{" "}
|
||||
Due in{" "}
|
||||
{remainingDays ? (
|
||||
getRemainingdays(remainingDays)
|
||||
) : (
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@ import Avatar from "@material-ui/core/Avatar";
|
|||
import { Modal } from "./Modal";
|
||||
import { AvatarList } from "../Avatars/AvatarList";
|
||||
import { FilterBar } from "../FilterBar";
|
||||
import { UsersModalEntry } from "./UsersModalEntry";
|
||||
import { User } from "../../types/User";
|
||||
import { patch } from "../../utils/http";
|
||||
import { Constants } from "../../utils/Constants";
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ export const ProgressInfo: FC<IProps> = ({
|
|||
{tasksDone}/{tasksTotalCount}
|
||||
</span>
|
||||
<Box className="right">
|
||||
<span>Due {remainingDays} days</span>
|
||||
<span>Due in {remainingDays} days</span>
|
||||
</Box>
|
||||
</Box>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue