Skip to content

Commit afa6fa6

Browse files
crisbetotinayuangao
authored andcommitted
chore: fix lint failure (#11347)
Fixes a lint failure that was introduced by a PR being merged in close to another one that introduced new lint rules.
1 parent d52acc9 commit afa6fa6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/material-examples/stepper-vertical/stepper-vertical-example.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Component} from '@angular/core';
1+
import {Component, OnInit} from '@angular/core';
22
import {FormBuilder, FormGroup, Validators} from '@angular/forms';
33

44
/**
@@ -9,7 +9,7 @@ import {FormBuilder, FormGroup, Validators} from '@angular/forms';
99
templateUrl: 'stepper-vertical-example.html',
1010
styleUrls: ['stepper-vertical-example.css']
1111
})
12-
export class StepperVerticalExample {
12+
export class StepperVerticalExample implements OnInit {
1313
isLinear = false;
1414
firstFormGroup: FormGroup;
1515
secondFormGroup: FormGroup;

0 commit comments

Comments
 (0)