Skip to content

Commit

Permalink
First adjustments to activity modal to render new logs old and new va…
Browse files Browse the repository at this point in the history
…lues. #261.
  • Loading branch information
mateuswetah committed Sep 17, 2019
1 parent 78a2f34 commit 9c9d0d2
Show file tree
Hide file tree
Showing 4 changed files with 150 additions and 189 deletions.
6 changes: 3 additions & 3 deletions src/admin/components/lists/activities-list.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,19 +70,19 @@
class="table-creation column-small-width"
@click="openActivityDetailsModal(activity)"
:label="$i18n.get('label_activity_date')"
:aria-label="$i18n.get('label_activity_date') + ': ' + activity.log_date">
:aria-label="$i18n.get('label_activity_date') + ': ' + activity.date">
<p
v-tooltip="{
delay: {
show: 500,
hide: 300,
},
content: activity.log_date,
content: activity.date,
autoHide: false,
classes: ['tooltip', 'repository-tooltip'],
placement: 'auto-start'
}"
v-html="activity.log_date"/>
v-html="activity.date"/>
</td>
<!-- Approbation -->
<!--<td-->
Expand Down
Loading

0 comments on commit 9c9d0d2

Please sign in to comment.