Skip to content

Commit 72cf8f7

Browse files
feat: TT-580 Missing placeholders (#820)
* feat: TT-580 Missing placeholders * feat: TT-580 add placeholders in ticket uri and description text inputs on the time clock page Co-authored-by: Luis Moyon <[email protected]>
1 parent 01c7559 commit 72cf8f7

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

src/app/modules/shared/components/details-fields/details-fields.component.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
formControlName="uri"
6565
id="uri"
6666
type="text"
67+
placeholder="Enter Jira ticket URL"
6768
class="form-control"
6869
aria-label="Small"
6970
aria-describedby="inputGroup-sizing-sm"
@@ -138,8 +139,14 @@
138139

139140
<div class="form-group text-left">
140141
<label for="NotesTextarea">Description:</label>
141-
<textarea maxlength="1500" formControlName="description" class="form-control" id="NotesTextarea" rows="3">
142-
</textarea>
142+
<textarea
143+
maxlength="1500"
144+
formControlName="description"
145+
placeholder="Write a brief description of your activity"
146+
class="form-control"
147+
id="NotesTextarea"
148+
rows="3"
149+
></textarea>
143150
</div>
144151
</fieldset>
145152
</div>

src/app/modules/time-clock/components/entry-fields/entry-fields.component.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<input
1818
(blur)="onSubmit()"
1919
type="text"
20+
placeholder="Enter Jira ticket URL"
2021
id="uri"
2122
formControlName="uri"
2223
class="form-control"
@@ -55,6 +56,7 @@
5556
maxlength="1500"
5657
(blur)="onSubmit()"
5758
formControlName="description"
59+
placeholder="Write a brief description of your activity"
5860
class="form-control"
5961
id="NotesTextarea"
6062
rows="2"></textarea>

0 commit comments

Comments
 (0)