Merge pull request #1106 from opf/bug-5830-missing-days-label-for-date-filters

Added missing "days" label to date and date_past filters.
pull/1098/head
Till Breuer 11 years ago
commit 0333bccee0
  1. 6
      public/templates/work_packages/query_filters.html

@ -109,9 +109,10 @@
size="3"
type="text"
ng-disabled="isLoading"/>
<label ng-switch-when="'date'" for="values_{{name}}" class="hidden-for-sighted">
<label ng-switch-when="date" for="values_{{name}}" class="hidden-for-sighted">
{{ I18n.t('js.work_packages.time_relative.days') }}
</label>
<label ng-switch-when="date" for="values_{{name}}">days</label>
<input ng-switch-when="date_past"
ng-model="filter.textValue"
@ -122,9 +123,10 @@
size="3"
type="text"
ng-disabled="isLoading"/>
<label ng-switch-when="'date'" for="values_{{name}}" class="hidden-for-sighted">
<label ng-switch-when="date_past" for="values_{{name}}" class="hidden-for-sighted">
{{ I18n.t('js.work_packages.time_relative.days') }}
</label>
<label ng-switch-when="date_past" for="values_{{name}}">days</label>
</div>

Loading…
Cancel
Save