feat(sprint-3): apply Survey Teal field UI
This commit is contained in:
@@ -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>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user