From 80e7e40c90732d5ab5651a3399aa4a445b521a02 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Thu, 17 Sep 2020 07:47:39 -0400
Subject: [PATCH] pt fix

---
 src/endWeek/reports/personalAttention.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/endWeek/reports/personalAttention.js b/src/endWeek/reports/personalAttention.js
index ab8400eded4..646815815d6 100644
--- a/src/endWeek/reports/personalAttention.js
+++ b/src/endWeek/reports/personalAttention.js
@@ -52,7 +52,7 @@ globalThis.induceFlawLenityEffects = function(slave) {
  * @returns {Node}
  */
 globalThis.basicTrainingDefaulter = function(slave) {
-	const el = document.createElement("p");
+	const el = new DocumentFragment();
 	const {He, His, his, he} = getPronouns(slave);
 	const pti = V.personalAttention.findIndex(function(s) { return s.ID === slave.ID; });
 	const pa = V.personalAttention[pti];
-- 
GitLab