fix: sort order for Last restarted (#14878)
# Checklist for submitter If some of the following don't apply, delete the relevant line. - [x] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [x] Documented any API changes (docs/REST API/rest-api.md or docs/Contributing/API-for-contributors.md) - [x] Input data is properly validated, `SELECT *` is avoided, SQL injection is prevented (using placeholders for values in statements) - [x] Added/updated tests - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Rachael Shaw <r@rachael.wtf>
This commit is contained in:
co-authored by
Rachael Shaw
parent
e9a84dbda0
commit
1fca8b1e38
@@ -9,6 +9,7 @@
|
||||
"label_updated_at": "0001-01-01T00:00:00Z",
|
||||
"policy_updated_at": "0001-01-01T00:00:00Z",
|
||||
"last_enrolled_at": "0001-01-01T00:00:00Z",
|
||||
"last_restarted_at": "0001-01-01T00:00:00Z",
|
||||
"seen_time": "0001-01-01T00:00:00Z",
|
||||
"software_updated_at": "0001-01-01T00:00:00Z",
|
||||
"refetch_requested": false,
|
||||
@@ -93,4 +94,4 @@
|
||||
"display_text": "test_host",
|
||||
"display_name": "test_host"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -28,6 +28,7 @@ spec:
|
||||
label_updated_at: "0001-01-01T00:00:00Z"
|
||||
labels: []
|
||||
last_enrolled_at: "0001-01-01T00:00:00Z"
|
||||
last_restarted_at: "0001-01-01T00:00:00Z"
|
||||
logger_tls_period: 0
|
||||
mdm:
|
||||
encryption_key_available: false
|
||||
|
||||
+3
-1
@@ -8,6 +8,7 @@
|
||||
"detail_updated_at": "0001-01-01T00:00:00Z",
|
||||
"label_updated_at": "0001-01-01T00:00:00Z",
|
||||
"last_enrolled_at": "0001-01-01T00:00:00Z",
|
||||
"last_restarted_at": "0001-01-01T00:00:00Z",
|
||||
"seen_time": "0001-01-01T00:00:00Z",
|
||||
"software_updated_at": "0001-01-01T00:00:00Z",
|
||||
"refetch_requested": false,
|
||||
@@ -77,6 +78,7 @@
|
||||
"detail_updated_at": "0001-01-01T00:00:00Z",
|
||||
"label_updated_at": "0001-01-01T00:00:00Z",
|
||||
"last_enrolled_at": "0001-01-01T00:00:00Z",
|
||||
"last_restarted_at": "0001-01-01T00:00:00Z",
|
||||
"seen_time": "0001-01-01T00:00:00Z",
|
||||
"software_updated_at": "0001-01-01T00:00:00Z",
|
||||
"refetch_requested": false,
|
||||
@@ -127,4 +129,4 @@
|
||||
"status": "offline",
|
||||
"display_text": "test_host2"
|
||||
}
|
||||
}
|
||||
}
|
||||
+3
-1
@@ -9,6 +9,7 @@
|
||||
"detail_updated_at": "0001-01-01T00:00:00Z",
|
||||
"label_updated_at": "0001-01-01T00:00:00Z",
|
||||
"last_enrolled_at": "0001-01-01T00:00:00Z",
|
||||
"last_restarted_at": "0001-01-01T00:00:00Z",
|
||||
"seen_time": "0001-01-01T00:00:00Z",
|
||||
"software_updated_at": "0001-01-01T00:00:00Z",
|
||||
"refetch_requested": false,
|
||||
@@ -78,6 +79,7 @@
|
||||
"detail_updated_at": "0001-01-01T00:00:00Z",
|
||||
"label_updated_at": "0001-01-01T00:00:00Z",
|
||||
"last_enrolled_at": "0001-01-01T00:00:00Z",
|
||||
"last_restarted_at": "0001-01-01T00:00:00Z",
|
||||
"seen_time": "0001-01-01T00:00:00Z",
|
||||
"software_updated_at": "0001-01-01T00:00:00Z",
|
||||
"refetch_requested": false,
|
||||
@@ -129,4 +131,4 @@
|
||||
"display_text": "test_host2"
|
||||
}
|
||||
}
|
||||
]
|
||||
]
|
||||
@@ -32,6 +32,7 @@ spec:
|
||||
total_issues_count: 0
|
||||
label_updated_at: "0001-01-01T00:00:00Z"
|
||||
last_enrolled_at: "0001-01-01T00:00:00Z"
|
||||
last_restarted_at: "0001-01-01T00:00:00Z"
|
||||
logger_tls_period: 0
|
||||
mdm:
|
||||
encryption_key_available: false
|
||||
@@ -88,6 +89,7 @@ spec:
|
||||
total_issues_count: 0
|
||||
label_updated_at: "0001-01-01T00:00:00Z"
|
||||
last_enrolled_at: "0001-01-01T00:00:00Z"
|
||||
last_restarted_at: "0001-01-01T00:00:00Z"
|
||||
logger_tls_period: 0
|
||||
mdm:
|
||||
encryption_key_available: false
|
||||
|
||||
Reference in New Issue
Block a user