Skip to content
Snippets Groups Projects
Commit bd610abc authored by Timothee P's avatar Timothee P :sunflower:
Browse files

switch back to format date

parent b44820f9
No related branches found
No related tags found
1 merge request!561REDMINE_ISSUE-16828|REDMINE_ISSUE-17022|REDMINE_ISSUE-17031|REDMINE_ISSUE-17033| Page utilisateur - lien non valide vers signalement
......@@ -286,7 +286,7 @@
id="update"
class="dt-center"
>
{{ feature.updated_on }}
{{ feature.updated_on | formatDate }}
</td>
<td
v-if="user"
......@@ -398,10 +398,17 @@
<script>
import { mapState, mapGetters, mapMutations } from 'vuex';
import { formatStringDate } from '@/utils';
export default {
name: 'FeatureListTable',
filters: {
formatDate(value) {
return formatStringDate(value);
},
},
beforeRouteLeave (to, from, next) {
if (to.name !== 'editer-attribut-signalement') {
this.UPDATE_CHECKED_FEATURES([]); // empty if not needed anymore
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment