Skip to content

Commit

Permalink
Client - add button to access report & missing filters on reports
Browse files Browse the repository at this point in the history
  • Loading branch information
SamR1 committed Nov 10, 2024
1 parent 067ac8a commit 63db498
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@
<th class="left-text">
{{ capitalize($t('common.LAST_UPDATED_ON')) }}
</th>
<th class="left-text">
{{ $t('admin.ACTION') }}
</th>
</tr>
</thead>
<tbody>
Expand Down Expand Up @@ -158,6 +161,11 @@
{{ getDate(report.updated_at) }}
</time>
</td>
<td>
<button @click="$router.push(`/admin/reports/${report.id}`)">
{{ $t('admin.APP_MODERATION.VIEW_REPORT') }}
</button>
</td>
</tr>
</tbody>
</table>
Expand Down
1 change: 1 addition & 0 deletions fittrackee_client/src/components/Common/FilterSelects.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
</option>
</select>
</label>
<slot name="additionalFilters"></slot>
<label>
{{ $t('common.SELECTS.PER_PAGE.LABEL') }}:
<select
Expand Down

0 comments on commit 63db498

Please sign in to comment.