Skip to content

Commit

Permalink
fix(demo): remove repetition id in demos (#3937)
Browse files Browse the repository at this point in the history
Closes #3936
  • Loading branch information
tarusin authored and valorkin committed Apr 5, 2018
1 parent 621e8dd commit c4c2877
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h3 [attr.id]="headerAnchor">

<ng-template [ngIf]="apiDocs.properties && apiDocs.properties.length">
<section>
<h3 id="inputs">Properties</h3>
<h3>Properties</h3>
<table class="table table-bordered">
<tbody>
<tr *ngFor="let prop of apiDocs.properties">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h3 [attr.id]="headerAnchor">

<ng-template [ngIf]="apiDocs.properties && apiDocs.properties.length">
<section>
<h3 id="inputs">Properties</h3>
<h3>Properties</h3>
<table class="table table-bordered">
<tbody>
<tr *ngFor="let prop of apiDocs.properties">
Expand Down
2 changes: 1 addition & 1 deletion demo/src/app/docs/api-docs/api-doc/api-doc.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h3 [attr.id]="headerAnchor">

<ng-template [ngIf]="apiDocs.inputs.length">
<section>
<h3 id="inputs">Inputs</h3>
<h3>Inputs</h3>
<div class="table-responsive">
<table class="table table-bordered">
<tbody>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="section bd-example"><ng-content></ng-content></div>
<div id="markup" class="section">
<div class="section">
<div class="item">
<tabset>
<tab heading="template" *ngIf="html">
Expand Down

0 comments on commit c4c2877

Please sign in to comment.