Skip to content

Commit 1bed9dd

Browse files
Moved hint description under the input form instead of before det input form. Matches the design of the rest of the document.
1 parent 44e0bb3 commit 1bed9dd

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

src/app/applications/multicast/multicast-edit/multicast-edit.component.html

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@
3636
'QUESTION.GIVE-MULTICAST-ADDRESS' | translate
3737
}}</label
3838
>*
39-
<label class="text--small">
40-
{{'QUESTION.MULTICAST.HINT-8-HEXA' | translate}}
41-
</label>
4239
<input
4340
type="text"
4441
[placeholder]="'QUESTION.MULTICAST-ADDRESS-PLACEHOLDER' | translate"
@@ -55,16 +52,16 @@
5552
}"
5653
(keypress)="keyPressHexadecimal($event)"
5754
/>
55+
<label>
56+
{{'QUESTION.MULTICAST.HINT-8-HEXA' | translate}}
57+
</label>
5858
</div>
5959

6060
<div class="form-group mt-3">
6161
<label class="form-label" for="mcNwkSKey">{{
6262
'QUESTION.GIVE-MULTICAST-NETWORK-KEY' | translate
6363
}}</label
6464
>*
65-
<label class="text--small">
66-
{{'QUESTION.MULTICAST.HINT-32-HEXA' | translate}}
67-
</label>
6865
<input
6966
type="text"
7067
[placeholder]="'QUESTION.MULTICAST-NETWORK-KEY-PLACEHOLDER' | translate"
@@ -80,16 +77,16 @@
8077
}"
8178
(keypress)="keyPressHexadecimal($event)"
8279
/>
80+
<label>
81+
{{'QUESTION.MULTICAST.HINT-32-HEXA' | translate}}
82+
</label>
8383
</div>
8484

8585
<div class="form-group mt-3">
8686
<label class="form-label" for="mcAppSKey">{{
8787
'QUESTION.GIVE-MULTICAST-APPLICATION-KEY' | translate
8888
}}</label
8989
>*
90-
<label class="text--small">
91-
{{'QUESTION.MULTICAST.HINT-32-HEXA' | translate}}
92-
</label>
9390
<input
9491
type="text"
9592
[placeholder]="
@@ -107,6 +104,9 @@
107104
}"
108105
(keypress)="keyPressHexadecimal($event)"
109106
/>
107+
<label>
108+
{{'QUESTION.MULTICAST.HINT-32-HEXA' | translate}}
109+
</label>
110110
</div>
111111

112112
<div class="form-group mt-3">
@@ -134,9 +134,6 @@
134134
'QUESTION.GIVE-MULTICAST-DATARATE' | translate
135135
}}</label
136136
>*
137-
<div class="text--small">
138-
{{'QUESTION.MULTICAST.HINT-DATA-RATE' | translate}}
139-
</div>
140137
<input
141138
type="number"
142139
[placeholder]="multicast.dr"
@@ -150,16 +147,16 @@
150147
'is-valid': formFailedSubmit && !errorFields.includes('dr')
151148
}"
152149
/>
150+
<label>
151+
{{'QUESTION.MULTICAST.HINT-DATA-RATE' | translate}}
152+
</label>
153153
</div>
154154

155155
<div class="form-group mt-3">
156156
<label class="form-label" for="frequency">{{
157157
'QUESTION.GIVE-MULTICAST-FREQUENCY' | translate
158158
}}</label
159159
>*
160-
<div class="text--small">
161-
{{'QUESTION.MULTICAST.HINT-FREQUENCY' | translate}}
162-
</div>
163160
<input
164161
type="number"
165162
[placeholder]="multicast.frequency"
@@ -173,6 +170,9 @@
173170
'is-valid': formFailedSubmit && !errorFields.includes('frequency')
174171
}"
175172
/>
173+
<label>
174+
{{'QUESTION.MULTICAST.HINT-FREQUENCY' | translate}}
175+
</label>
176176
</div>
177177

178178
<div class="form-group mt-3">

0 commit comments

Comments
 (0)