feat: Highlight entry in My Submissions Tab#5037
Open
vishwa21-prog wants to merge 2 commits into
Open
Conversation
- Add highlightSpecificSubmissionEntry function in challengeCtrl.js to highlight submission entries - Add scrollToEntryAfterSubmissionsLoads function to scroll to specific submission from URL anchor - Add id attribute to submission table rows in my-submission.html for anchor targeting - Add highlightSubmissionEntry CSS class with styling for highlighted submissions This feature allows users to navigate directly to a specific submission entry using URL anchors (e.g., #submission-123), similar to the existing leaderboard highlighting feature.
Codecov Report❌ Patch coverage is
❌ Your patch check has failed because the patch coverage (29.41%) is below the target coverage (70.00%). You can increase the patch coverage or adjust the target coverage. Additional details and impacted files@@ Coverage Diff @@
## master #5037 +/- ##
==========================================
- Coverage 92.33% 92.19% -0.14%
==========================================
Files 91 91
Lines 7671 7688 +17
==========================================
+ Hits 7083 7088 +5
- Misses 588 600 +12
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
- Added is_cli boolean field to Submission model with default=False and db_index=True - Added is_cli field to SubmissionSerializer and ChallengeSubmissionManagementSerializer - Created migration 0027_add_is_cli_field.py to add the field to the database This feature allows distinguishing between submissions made via CLI (is_cli=True) and submissions made via UI (is_cli=False, default)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix #3895: Highlight specific submission entries in My Submissions tab
Add highlightSpecificSubmissionEntry function in challengeCtrl.js to highlight submission entries.
Add scrollToEntryAfterSubmissionsLoads function to scroll to a specific submission from URL anchors.
Add id attributes to submission table rows in my-submission.html for anchor targeting.
Add highlightSubmissionEntry CSS class for styling highlighted submissions.
This allows users to navigate directly to a specific submission (e.g., #submission-123), similar to the leaderboard highlighting feature.