diff --git a/src/endWeek/reports/penthouseReport.js b/src/endWeek/reports/penthouseReport.js
index 4d706ecd7d920c8e68d3a502e2a2b642a2ef8917..452ceafa7d2e1cc04bf3646d020e216faf55fbea 100644
--- a/src/endWeek/reports/penthouseReport.js
+++ b/src/endWeek/reports/penthouseReport.js
@@ -1,4 +1,4 @@
-globalThis.penthouseReport = function() {
+App.EndWeek.penthouseReport = function() {
 	const el = document.createElement("p");
 	let r;
 
@@ -48,6 +48,8 @@ globalThis.penthouseReport = function() {
 	V.dairySpots = App.Entity.facilities.dairy.freeSpace;
 	V.servantsQuartersSpots = App.Entity.facilities.servantsQuarters.freeSpace;
 
+	return el;
+
 	function fullReport(slave) {
 		const el = new DocumentFragment();
 		const {
@@ -138,7 +140,8 @@ globalThis.penthouseReport = function() {
 			r.push(`and ${he} gives ${_milkResult.milk} liters of milk over the week, which is sold for <span class="yellowgreen">${cashFormat(_milkResult.milkSale)}.</span>`);
 		}
 
-		// <br>&nbsp;&nbsp;&nbsp;&nbsp;
+		App.Events.addNode(el, r, "div", "indent");
+		r = [];
 		if (slave.minorInjury !== 0) {
 			r.push(`${His} ${slave.minorInjury} will heal by the end of the week.`);
 		}
@@ -160,15 +163,13 @@ globalThis.penthouseReport = function() {
 				r.push(HGApplication(slave));
 			}
 		}
-
-		// &nbsp;&nbsp;&nbsp;&nbsp;
 		r.push(App.SlaveAssignment.devotion(slave));
 		App.Events.addNode(el, r);
 		return el;
 	}
 
 	function HGApplication(slave) {
-		const el = new DocumentFragment();
+		const el = document.createElement("span");
 		const {
 			He, His,
 			he, his, him, himself, girl
@@ -491,7 +492,7 @@ globalThis.penthouseReport = function() {
 			}
 		}
 
-		App.Events.addNode(el, r);
+		App.Events.addNode(el, r, "div", "indent");
 		return el;
 
 		function piercingCheck() {
diff --git a/src/endWeek/reports/personalAttention.js b/src/endWeek/reports/personalAttention.js
index bbe8dcb0aae1eb2d99400a44db52ddc7c2e7af2c..d05a81b53f7c29a2341e17df57e11fe6cc82fed4 100644
--- a/src/endWeek/reports/personalAttention.js
+++ b/src/endWeek/reports/personalAttention.js
@@ -88,7 +88,7 @@ globalThis.personalAttention = (function() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * @returns {Node}
+	 * @returns {HTMLElement}
 	 */
 	function personalAttention(slave) {
 		const el = document.createElement("p");