Skip to content

Commit c4c2877

Browse files
tarusinvalorkin
authored andcommitted
fix(demo): remove repetition id in demos (#3937)
Closes #3936
1 parent 621e8dd commit c4c2877

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

demo/src/app/docs/api-docs/api-doc-class/api-doc-class.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ <h3 [attr.id]="headerAnchor">
77

88
<ng-template [ngIf]="apiDocs.properties && apiDocs.properties.length">
99
<section>
10-
<h3 id="inputs">Properties</h3>
10+
<h3>Properties</h3>
1111
<table class="table table-bordered">
1212
<tbody>
1313
<tr *ngFor="let prop of apiDocs.properties">

demo/src/app/docs/api-docs/api-doc-config/api-doc-config.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ <h3 [attr.id]="headerAnchor">
77

88
<ng-template [ngIf]="apiDocs.properties && apiDocs.properties.length">
99
<section>
10-
<h3 id="inputs">Properties</h3>
10+
<h3>Properties</h3>
1111
<table class="table table-bordered">
1212
<tbody>
1313
<tr *ngFor="let prop of apiDocs.properties">

demo/src/app/docs/api-docs/api-doc/api-doc.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ <h3 [attr.id]="headerAnchor">
2222

2323
<ng-template [ngIf]="apiDocs.inputs.length">
2424
<section>
25-
<h3 id="inputs">Inputs</h3>
25+
<h3>Inputs</h3>
2626
<div class="table-responsive">
2727
<table class="table table-bordered">
2828
<tbody>

demo/src/app/docs/api-docs/sample-box/sample-box.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="section bd-example"><ng-content></ng-content></div>
2-
<div id="markup" class="section">
2+
<div class="section">
33
<div class="item">
44
<tabset>
55
<tab heading="template" *ngIf="html">

0 commit comments

Comments
 (0)