mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 04:23:40 +00:00
latest sdk, fix build
This commit is contained in:
committed by
Aiden McClelland
parent
010be05920
commit
25f2c057b7
@@ -6,7 +6,7 @@
|
||||
[decimal]="spec.integer ? 'never' : 'not-zero'"
|
||||
[min]="spec.min ?? -Infinity"
|
||||
[max]="spec.max ?? Infinity"
|
||||
[step]="spec.step ?? Infinity"
|
||||
[step]="spec.step || 0"
|
||||
[(ngModel)]="value"
|
||||
(focusedChange)="onFocus($event)"
|
||||
>
|
||||
|
||||
@@ -1108,7 +1108,7 @@ export module Mock {
|
||||
},
|
||||
min: 1,
|
||||
max: 9998,
|
||||
step: '1',
|
||||
step: 1,
|
||||
integer: true,
|
||||
}),
|
||||
'favorite-slogan': Value.text({
|
||||
|
||||
Reference in New Issue
Block a user