Fixed statistics page

This commit is contained in:
MaxOvs19
2023-10-03 18:26:07 +03:00
parent 986c0833f7
commit aba12694bf
4 changed files with 31 additions and 8 deletions

View File

@ -79,3 +79,9 @@ export function caseOfNum(number, type) {
: cases[number % 10 < 5 ? number % 10 : 5]
];
}
export function copyProjectLink(projectId) {
navigator.clipboard.writeText(
`https://itguild.info/tracker/project/${projectId}`
);
}