diff --git a/Fate Core v2/fate.html b/Fate Core v2/fate.html
index e121bc9bce..a3ea56d47c 100644
--- a/Fate Core v2/fate.html
+++ b/Fate Core v2/fate.html
@@ -1862,7 +1862,7 @@
newRowAttrs["repeating_stress_" + newRowId + "_usable"] = stressMax;
if (!isNullOrWhitespace(skill)) {
- newRowAttrs["repeating_stress_" + newRowId + "_skill"] = skill.tim();
+ newRowAttrs["repeating_stress_" + newRowId + "_skill"] = skill.trim();
newRowAttrs["repeating_stress_" + newRowId + "_bound"] = 1;
}
@@ -2448,5 +2448,5 @@
});
}
- const isNullOrWhitespace = (attr) => !(attr && attr.trim() && attr.trim() != "0");
-
\ No newline at end of file
+ const isNullOrWhitespace = (attr) => !(attr && (attr.trim ? attr.trim() && attr.trim() != "0" : attr > 0));
+