Commit 2082d8fd authored by ruanshudong's avatar ruanshudong
Browse files

fix monitor server page, hour show bug

parent 7c529735
Showing with 1 addition and 1 deletion
+1 -1
......@@ -196,7 +196,7 @@ export default {
filteredItems() {
const hour = this.hour;
return (hour >= 0 && this.enableHourFilter)
? this.allItems.filter((d) => {+d.show_time.slice(0, 2) === hour})
? this.allItems.filter((d) => +d.show_time.slice(0, 2) === hour)
: this.allItems;
},
itemsCount() {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment