changed start and end time format in the downtime listing

pull/1097/head
smit95tpatel 2021-12-20 17:14:18 +05:30
parent f6ac1533d3
commit 77372b4f35
2 changed files with 2 additions and 2 deletions

View File

@ -121,7 +121,7 @@
</template>
<script>
import { mapGetters, mapState } from 'vuex';
import { mapState } from 'vuex';
import Api from '../../API';
export default {

View File

@ -258,7 +258,7 @@ export default Vue.mixin({
return addSeconds(date, amount)
},
niceDateWithYear (val) {
return format(parseISO(val), 'EEE, do MMM yyyy \'at\' h:mma');
return format(parseISO(val), 'do MMM, yyyy h:mma');
},
}
});