We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53949b5 commit 728ee84Copy full SHA for 728ee84
1 file changed
src/pages/PrinterPage/components/AdjustSheets/CustomMarginItems.tsx
@@ -16,7 +16,7 @@ function createMarginInputLinter(value: Accessor<string>) {
16
const MARGIN_INPUT_SYNC_STATE_OPTIONS: SyncStateOptions<number, string> = {
17
flowDown: (value) => String(value),
18
flowUp: (value) => Number.parseFloat(value),
19
- canFlowUp: (value) => Number.parseFloat(value) > 0,
+ canFlowUp: (value) => Number.parseFloat(value) >= 0,
20
};
21
export default function CustomMarginItems() {
22
const { state: config, actions: configActions } = useConfig();
0 commit comments