File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -78,13 +78,15 @@ export class NumberChange {
7878 <div *ngIf="!skeleton" class="bx--number__controls">
7979 <button
8080 class="bx--number__control-btn up-icon"
81+ type="button"
8182 aria-live="polite"
8283 aria-atomic="true"
8384 (click)="onIncrement()">
8485 <ibm-icon-caret-up16></ibm-icon-caret-up16>
8586 </button>
8687 <button
8788 class="bx--number__control-btn down-icon"
89+ type="button"
8890 aria-live="polite"
8991 aria-atomic="true"
9092 (click)="onDecrement()">
@@ -211,13 +213,13 @@ export class Number implements ControlValueAccessor {
211213 * Called when number input is blurred. Needed to properly implement `ControlValueAccessor`.
212214 * @memberof Number
213215 */
214- onTouched : ( ) => any = ( ) => { } ;
216+ onTouched : ( ) => any = ( ) => { } ;
215217
216218 /**
217219 * Method set in `registerOnChange` to propagate changes back to the form.
218220 * @memberof Number
219221 */
220- propagateChange = ( _ : any ) => { } ;
222+ propagateChange = ( _ : any ) => { } ;
221223
222224 /**
223225 * Adds 1 to the current `value`.
You can’t perform that action at this time.
0 commit comments