Skip to content

Commit 9729e8f

Browse files
rtpHarryAndrewKushnir
authored andcommitted
docs: removed unused pull-left classes from hero form component (angular#26178)
PR Close angular#26178
1 parent 78b6f88 commit 9729e8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aio/content/examples/forms/src/app/hero-form/hero-form.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@ <h1>Hero Form</h1>
7272
<h2>You submitted the following:</h2>
7373
<div class="row">
7474
<div class="col-xs-3">Name</div>
75-
<div class="col-xs-9 pull-left">{{ model.name }}</div>
75+
<div class="col-xs-9">{{ model.name }}</div>
7676
</div>
7777
<div class="row">
7878
<div class="col-xs-3">Alter Ego</div>
79-
<div class="col-xs-9 pull-left">{{ model.alterEgo }}</div>
79+
<div class="col-xs-9">{{ model.alterEgo }}</div>
8080
</div>
8181
<div class="row">
8282
<div class="col-xs-3">Power</div>
83-
<div class="col-xs-9 pull-left">{{ model.power }}</div>
83+
<div class="col-xs-9">{{ model.power }}</div>
8484
</div>
8585
<br>
8686
<button class="btn btn-primary" (click)="submitted=false">Edit</button>

0 commit comments

Comments
 (0)