Skip to content

Commit 46d84e1

Browse files
Update src/aria/spinbutton/spinbutton-decrement.ts
Co-authored-by: Matthieu Riegler <kyro38@gmail.com>
1 parent e3c6d36 commit 46d84e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/aria/spinbutton/spinbutton-decrement.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export class SpinButtonDecrement {
3737
readonly spinButton = inject(SPINBUTTON);
3838

3939
/** Whether the decrement button should be disabled. */
40-
readonly _isDisabled = computed(() => {
40+
protected readonly _isDisabled = computed(() => {
4141
if (this.spinButton.disabled() || this.spinButton.readonly()) return true;
4242
if (this.spinButton.wrap()) return false;
4343
return this.spinButton._pattern.atMin();

0 commit comments

Comments
 (0)