From c01347acdb7628a26ec02e2160cfce8502b98a05 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Mon, 19 Oct 2020 12:49:19 -0400 Subject: [PATCH] gram --- src/facilities/incubator/incubatorInteract.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/facilities/incubator/incubatorInteract.js b/src/facilities/incubator/incubatorInteract.js index 63e074a1d40..4bd7a6a0a47 100644 --- a/src/facilities/incubator/incubatorInteract.js +++ b/src/facilities/incubator/incubatorInteract.js @@ -50,13 +50,13 @@ App.UI.incubator = function() { function intro() { - const el = new DocumentFragment(); + const el = document.createElement("p"); let r = []; const freeTanks = V.incubator - V.incubatorSlaves; r.push(`${_incubatorNameCaps} is a clean, cold hall designed to be lined with tanks and their connected monitoring systems.`); if (V.incubatorSlaves > 2) { - r.push(`It's well used. The hum of active tanks fill the air.`); + r.push(`It's well used. The hum of active tanks fills the air.`); } else if (V.incubatorSlaves > 0) { r.push(`It's barely used; most of the tanks lie dormant.`); } else { -- GitLab