fix: align rules list and review detail flows

This commit is contained in:
wren
2026-05-06 10:35:57 +08:00
parent 99fce169cb
commit 22ef99754c
9 changed files with 257 additions and 172 deletions
@@ -17,9 +17,9 @@ interface Statistics {
interface RulesDirectoryProps {
reviewPoints: ReviewPoint[];
statistics: Statistics;
activeReviewPointResultId: string | null;
activeReviewPointResultId: string | number | null;
fileName: string;
onRuleSelect: (id: string) => void;
onRuleSelect: (id: string | number) => void;
onBack: () => void;
}