This commit is contained in:
2026-01-22 03:34:49 +02:00
parent e6504e8801
commit 5245598fd6
5 changed files with 21 additions and 22 deletions
+2 -1
View File
@@ -8,6 +8,7 @@ import { DatePicker } from '../widgets/date-picker/DatePicker';
import { TwoDatePicker } from '../widgets/two-datepicker/TwoDatepicker';
import { IntervalPicker } from '../widgets/interval-picker/IntervalPicker';
import { Uploader } from '../widgets/uploader/Uploader';
import { PinBox } from '../widgets/pin-box/PinBox';
export class Render {
@@ -979,7 +980,7 @@ export class Render {
Render.makeFieldWrapper(field, parent).append(input);
input.PinBox({ digits: field.digits || 6 });
new PinBox(input, { digits: field.digits || 6 });
return input;
}