Content unavailable updates

This commit is contained in:
Garth Vander Houwen 2024-07-30 21:37:18 -07:00
parent f5e48a5776
commit 9bd0021fac
2 changed files with 5 additions and 6 deletions

View file

@ -10849,6 +10849,9 @@
},
"Line Series" : {
},
"Loading Logs. . ." : {
},
"Location: %@" : {
@ -15301,9 +15304,6 @@
},
"No Environment Metrics" : {
},
"No Logs Available" : {
},
"No Positions" : {

View file

@ -58,7 +58,6 @@ struct AppLog: View {
.tint(Color(UIColor.secondarySystemBackground))
.foregroundColor(.accentColor)
.buttonStyle(.borderedProminent)
}
.controlSize(.regular)
.padding(5)
@ -69,7 +68,7 @@ struct AppLog: View {
.disabled(selection != nil)
.overlay {
if logs.isEmpty {
ContentUnavailableView("No Logs Available", systemImage: "scroll")
ContentUnavailableView("Loading Logs. . .", systemImage: "scroll")
}
}
.refreshable {
@ -120,7 +119,7 @@ struct AppLog: View {
.disabled(selection != nil)
.overlay {
if logs.isEmpty {
ContentUnavailableView("No Logs Available", systemImage: "scroll")
ContentUnavailableView("Loading Logs. . .", systemImage: "scroll")
}
}
.refreshable {