From 411d9ac860c88774752868f6cb741b42368a591e Mon Sep 17 00:00:00 2001 From: soufiane Date: Tue, 13 Feb 2024 17:16:47 +0100 Subject: [PATCH] wait #6717 @0:01 --- app/Console/Commands/FluidbookSettingsExport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/FluidbookSettingsExport.php b/app/Console/Commands/FluidbookSettingsExport.php index 23de3b740..65b1754e4 100644 --- a/app/Console/Commands/FluidbookSettingsExport.php +++ b/app/Console/Commands/FluidbookSettingsExport.php @@ -89,7 +89,7 @@ class FluidbookSettingsExport extends ToolboxCommand $cell = $sheet->getCellByColumnAndRow($c, $line); $cell->setValue($key); $style = $sheet->getStyleByColumnAndRow($c, $line); - if(!$field[$key]['editable'] || $field[$key]['type'] === 'noteditable') { + if(!$field[$key]['editable'] || $field[$key]['type'] === 'noteditable' || $field[$key]['type'] === 'hidden') { $style->getProtection()->setLocked(Protection::PROTECTION_PROTECTED); $style->getFill()->setFillType(Fill::FILL_SOLID)->getStartColor()->setARGB('dddddd'); } -- 2.39.5