FIX: Make biome happy
This commit is contained in:
committed by
Nicolás Hatcher Andrés
parent
480640dc98
commit
10a9d36f3d
@@ -368,7 +368,9 @@ const Workbook = (props: { model: Model; workbookState: WorkbookState }) => {
|
||||
horizontalAlign={
|
||||
style.alignment ? style.alignment.horizontal : "general"
|
||||
}
|
||||
verticalAlign={(style.alignment?.vertical) ? style.alignment.vertical: "bottom"}
|
||||
verticalAlign={
|
||||
style.alignment?.vertical ? style.alignment.vertical : "bottom"
|
||||
}
|
||||
canEdit={true}
|
||||
numFmt={style.num_fmt}
|
||||
showGridLines={model.getShowGridLines(model.getSelectedSheet())}
|
||||
|
||||
Reference in New Issue
Block a user