1
0

fix: Another
All checks were successful
Remote Deploy / deploy (push) Successful in 4s

This commit is contained in:
2026-02-08 19:27:19 +01:00
parent 768913aacc
commit 0beb0411d6

View File

@@ -202,8 +202,9 @@ function extractTakesPlace(sheet) {
if (!cell.isMerged) { if (!cell.isMerged) {
return ""; return "";
} }
let str = "";
let str = cell.master.value.trim(); try {
str = cell.master.value.trim();
let i = 5; let i = 5;
while (true) { while (true) {
@@ -218,6 +219,7 @@ function extractTakesPlace(sheet) {
str += `\n${cell.value.trim()}` str += `\n${cell.value.trim()}`
i++; i++;
} }
} catch {}
return str; return str;
} }