Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(sheets): bugfix for freeze & hover-manager-service & data-validation #2233

Merged
merged 12 commits into from
May 15, 2024
Prev Previous commit
Next Next commit
fix: checkbox validator
  • Loading branch information
weird94 committed May 14, 2024
commit 8f20f741788bb7385f07ab3cb39ed1498adfad48
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export function CheckboxFormulaInput(props: IFormulaInputProps) {
onChange={(newValue) => {
onChange?.({
...value,
formula1: newValue,
formula1: newValue || undefined,
});
}}
/>
Expand All @@ -77,7 +77,7 @@ export function CheckboxFormulaInput(props: IFormulaInputProps) {
onChange={(newValue) => {
onChange?.({
...value,
formula2: newValue,
formula2: newValue || undefined,
});
}}
/>
Expand Down
Loading