log-filter: remove tip for date format
The date picker already has the tip for the date format, which one uses
locale settings.
This commit removes the tip from the label.
Change-Id: Ib45b6c620dab2031cf0f36c5389111df7cb91ef5
Signed-off-by: Alexander Filippov <a.filippov@yadro.com>
diff --git a/app/common/directives/log-filter.html b/app/common/directives/log-filter.html
index 3e6bc69..b84618e 100644
--- a/app/common/directives/log-filter.html
+++ b/app/common/directives/log-filter.html
@@ -15,7 +15,7 @@
</button>
</div>
<div class="inline event__date-filter">
- <p class="filter-label">Filter by date range (MM/DD/YYYY)</p>
+ <p class="filter-label">Filter by date range</p>
<div class="inline">
<label for="event-filter-start-date">Start Date</label>
<input id="event-filter-start-date" type="date" max="{{end_date | date:'yyyy-MM-dd'}}" placeholder="MM/DD/YYYY" ng-model="start_date"/>
@@ -23,7 +23,7 @@
<strong>–</strong>
<div class="inline">
<label for="event-filter-end-date">End Date</label>
- <input id="event-filter-end-date" type="date" min="{{start_date | date:'yyyy-MM-dd'}}"placeholder="MM/DD/YYYY" ng-model="end_date"/>
+ <input id="event-filter-end-date" type="date" min="{{start_date | date:'yyyy-MM-dd'}}" placeholder="MM/DD/YYYY" ng-model="end_date"/>
</div>
</div>
<div class="inline event__status-filter">
@@ -55,4 +55,4 @@
</ul>
</div>
</div>
-</section>
\ No newline at end of file
+</section>