Skip to content

Commit

Permalink
Content unavailable updates
Browse files Browse the repository at this point in the history
  • Loading branch information
garthvh committed Jul 31, 2024
1 parent f5e48a5 commit 9bd0021
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Localizable.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -10849,6 +10849,9 @@
},
"Line Series" : {

},
"Loading Logs. . ." : {

},
"Location: %@" : {

Expand Down Expand Up @@ -15301,9 +15304,6 @@
},
"No Environment Metrics" : {

},
"No Logs Available" : {

},
"No Positions" : {

Expand Down
5 changes: 2 additions & 3 deletions Meshtastic/Views/Settings/AppLog.swift
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ struct AppLog: View {
.tint(Color(UIColor.secondarySystemBackground))
.foregroundColor(.accentColor)
.buttonStyle(.borderedProminent)

}
.controlSize(.regular)
.padding(5)
Expand All @@ -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 {
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit 9bd0021

Please sign in to comment.