Skip to content

Commit 7037103

Browse files
committed
fix clone scorecard
1 parent c8ea7d0 commit 7037103

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/apps/review/src/lib/components/TableScorecards/TableScorecards.module.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
display: flex;
1212
gap: 4px;
1313
align-items: center;
14+
cursor: pointer;
15+
16+
&:hover {
17+
text-decoration: underline;
18+
}
1419

1520
svg {
1621
width: 20px;

src/apps/review/src/pages/scorecards/ScorecardsListPage/ScorecardsListPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export const ScorecardsListPage: FC<{}> = () => {
6767
}
6868

6969
toast.success('Scorecard cloned successfully!')
70-
navigate(`${cloned.id}/details`)
70+
navigate(`${cloned.id}/edit`)
7171
} catch (error) {
7272
toast.error('Failed to clone scorecard!')
7373
console.error('Failed to clone scorecard:', error)

0 commit comments

Comments
 (0)