feat(sprint-3): apply Survey Teal field UI

This commit is contained in:
Brent Perteet
2026-08-20 22:00:31 -05:00
parent f9fb9f59f4
commit 5e87d81bb6
16 changed files with 954 additions and 562 deletions

View File

@@ -16,10 +16,10 @@ public sealed partial class MapViewModel : ObservableObject
private int _jobId;
[ObservableProperty]
private string _jobName = "";
private string _jobName = "Active job map";
[ObservableProperty]
private string _statusText = "";
private string _statusText = "Loading locally saved points…";
public SettingsService Settings => _settings;
@@ -35,7 +35,7 @@ public sealed partial class MapViewModel : ObservableObject
var jobId = JobId > 0 ? JobId : _settings.ActiveJobId;
if (jobId is null)
{
JobName = "";
JobName = "No active job";
StatusText = "No job selected. Create or activate a job to see its points.";
return new List<LoggedPoint>();
}