Merge branch 'issue2939' into develop

pull/2886/head
nicolargo 2024-09-14 09:53:09 +02:00
commit 10c98f6fda
4 changed files with 457 additions and 407 deletions

View File

@ -13,7 +13,8 @@ check_update=true
# Default is 1200 values (~1h with the default refresh rate)
history_size=1200
# Set the way Glances should display the date (default is %Y-%m-%d %H:%M:%S %Z)
#strftime_format="%Y-%m-%d %H:%M:%S %Z"
# strftime_format=%Y-%m-%d %H:%M:%S %Z
strftime_format=%Y-%m-%d
# Define external directory for loading additional plugins
# The layout follows the glances standard for plugin definitions
#plugin_dir=/home/user/dev/plugins

View File

@ -1,7 +1,7 @@
<template>
<section id="now" class="plugin">
<div class="table-row">
<div class="table-cell text-left">{{ localDate(date_iso) }}</div>
<div class="table-cell text-left">{{ date_custom }}</div>
</div>
</section>
</template>
@ -14,13 +14,8 @@ export default {
}
},
computed: {
date_iso() {
return this.data.stats['now']['iso'];
}
},
methods: {
localDate(date) {
return new Date(date).toLocaleString();
date_custom() {
return this.data.stats['now']['custom'];
}
}
};

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long