Skip to content

Commit 91bfaf7

Browse files
authored
Merge pull request #60 from UMB-CS-682-Team-03/fix_testing_suit_with_patches
Fixed testcases 4,5 being broken on main branch, fixed test case 1 not performing assertions
2 parents d1ba90d + 2fd3d94 commit 91bfaf7

File tree

3 files changed

+200
-206
lines changed

3 files changed

+200
-206
lines changed

html/classhelper.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ table tr:hover {
6161
width: 7em;
6262
}
6363

64-
.acc-apply {
64+
.popup-apply {
6565
font-weight: bold;
6666
}
6767

html/classhelper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ class ClassHelper extends HTMLElement {
181181
const handlePopupReadyEvent = (event) => {
182182
// we get a document Fragment in event.detail we replace it with the root
183183
// replaceChild method consumes the documentFragment content, subsequent calls will be no-op.
184-
if (e.detail.childElementCount === 1) {
184+
if (event.detail.childElementCount === 1) {
185185
this.popupRef.document.replaceChild(event.detail, this.popupRef.document.documentElement);
186186
}
187187
}

0 commit comments

Comments
 (0)