Compare commits

...

3 Commits

Author SHA1 Message Date
copilot-swe-agent[bot] ddf863f85e ci: ignore bot planning commits in commitlint
Co-authored-by: pateljannat <31363128+pateljannat@users.noreply.github.com>
2026-03-16 07:53:02 +00:00
copilot-swe-agent[bot] 1b00437847 fix: assignment file bleeding across assignments and broken X button
Co-authored-by: pateljannat <31363128+pateljannat@users.noreply.github.com>
2026-03-16 07:39:37 +00:00
copilot-swe-agent[bot] 6de075dad9 Initial plan 2026-03-16 07:34:37 +00:00
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -1,5 +1,6 @@
export default {
parserPreset: "conventional-changelog-conventionalcommits",
ignores: [(commit) => commit.startsWith("Initial plan")],
rules: {
"subject-empty": [2, "never"],
"type-case": [2, "always", "lower-case"],
+1 -2
View File
@@ -281,7 +281,6 @@ const submissionResource = createDocumentResource({
watch(submissionResource, () => {
if (!submissionResource.doc) return
console.log(submissionResource.doc)
if (submissionResource.doc.answer) {
answer.value = submissionResource.doc.answer
}
@@ -405,7 +404,7 @@ const getType = () => {
const removeSubmission = () => {
isDirty.value = true
submissionResource.doc.assignment_attachment = ''
attachment.value = null
}
const canGradeSubmission = computed(() => {
@@ -7,6 +7,7 @@
</header>
<div class="overflow-hidden h-[calc(100vh-3.2rem)]">
<Assignment
:key="assignmentID + '_' + submissionName"
:assignmentID="assignmentID"
:submissionName="submissionName"
:showTitle="!fromLesson"