Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
c541efd
fix: modify EditQuestionPage component
GowthamDhanaraju Jun 9, 2025
7e9cc9f
feat: enhance question settings and type selector with icons and impr…
GowthamDhanaraju Jun 9, 2025
e52cb0f
feat: improve error handling and loading state in TestSelectPage comp…
GowthamDhanaraju Jun 10, 2025
df58365
feat: enhance question creation UI with icons and improve interaction
GowthamDhanaraju Jun 9, 2025
9e9924d
fix: modify EditQuestionPage component
GowthamDhanaraju Jun 9, 2025
d8f7809
feat: enhance question settings and type selector with icons and impr…
GowthamDhanaraju Jun 9, 2025
dee48d5
chore: update package-lock.json after resolving rebase conflicts
GowthamDhanaraju Jun 12, 2025
70eab76
Add results types and API utilities for student and teacher results m…
GowthamDhanaraju Jun 13, 2025
90ed65d
Remove workflows directory, keeping only copilot-instructions.md
GowthamDhanaraju Jun 13, 2025
a350a2c
Merge remote-tracking branch 'upstream/development' into development
GowthamDhanaraju Jun 13, 2025
3873826
feat: add RecentTestsCard component to display recent tests for teachers
GowthamDhanaraju Jun 15, 2025
f953196
Merge upstream changes and fix duplicate props in question-editor
GowthamDhanaraju Jun 15, 2025
bb6a463
Merge branch 'development' into development
Aksaykanthan Jun 16, 2025
2c49fe5
Refactor teacher results components and enhance mock data
GowthamDhanaraju Jun 21, 2025
fff8ba0
feat: add question stats table and histogram components
GowthamDhanaraju Jun 21, 2025
3f10e10
feat: add QuestionStatsTable and PerformanceDistributionChart compone…
GowthamDhanaraju Jun 21, 2025
0a524d8
feat: enhance charts with SSR-safe dark mode detection and theme-awar…
GowthamDhanaraju Jun 21, 2025
1aa2c0e
Fix SSR compatibility and rounding errors in teacher results
GowthamDhanaraju Jun 21, 2025
a97d660
Merge branch 'development' into development
Aksaykanthan Jun 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
178 changes: 142 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion src/app/(test)/student-results/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import {
TestSummary,
} from "@/components/results";
import { MockResultsAPI } from "@/lib/results-api";
import { StudentPerformanceTrendsChart } from "@/components/results/student/performance-trends-chart";

export default function StudentResultsPage() {
const router = useRouter();
Expand Down Expand Up @@ -170,7 +171,10 @@ export default function StudentResultsPage() {
<p className="text-muted-foreground mb-4">
Track your academic performance and progress
</p>
{/* Overview cards removed as requested */}
</div>
{/* Performance Trends Chart */}
<div className="mb-8">
<StudentPerformanceTrendsChart courses={courseResults} />
</div>
{/* Recent Tests */}
<div>
Expand Down
Loading