FIX[WebApp]: fixes in formula bar

* fx is not clickable
* Removed chevron
* Show slecting/ed area in address
This commit is contained in:
Nicolás Hatcher
2024-10-24 21:44:56 +02:00
committed by Nicolás Hatcher Andrés
parent f9ea4fd757
commit 7ffbfac432
3 changed files with 11 additions and 9 deletions

View File

@@ -164,6 +164,7 @@ function Worksheet(props: {
const { row, column } = cell;
model.onAreaSelecting(row, column);
canvas.renderSheet();
refresh();
},
onAreaSelected: () => {
const styles = workbookState.getCopyStyles();
@@ -179,6 +180,7 @@ function Worksheet(props: {
if (worksheetElement.current) {
worksheetElement.current.style.cursor = "auto";
}
refresh();
},
onExtendToCell: (cell) => {
const canvas = worksheetCanvas.current;