diff --git a/src/app/modules/settings/settings.facade.ts b/src/app/modules/settings/settings.facade.ts
index 0bea6d8f..bf78476e 100644
--- a/src/app/modules/settings/settings.facade.ts
+++ b/src/app/modules/settings/settings.facade.ts
@@ -73,7 +73,8 @@ export class SettingsFacade {
list = {
nextPointTriggers: ['perpendicularPassed', 'arrivalCircleEntered'],
minZoom: [8, 9, 10, 11, 12, 13, 14, 15, 16, 17],
- resourceRadius: [5, 10, 20, 50, 100, 150, 200, 500],
+ resourceRadius: [0, 5, 10, 20, 50, 100, 150, 200, 500],
+ noteRadius: [5, 10, 20, 50, 100, 150, 200, 500],
applications: [],
favourites: [],
resourcePaths: [],
@@ -100,7 +101,9 @@ export class SettingsFacade {
]),
aisCogLine: new Map([
[0, 'Off'],
- [10, 'On']
+ [10, '10 min'],
+ [30, '30 min'],
+ [60, '60 min']
]),
aisProfiles: new Map([[0, 'Default']]) //,[1,'Navigation'] ])
};
diff --git a/src/app/modules/skresources/components/ais/ais-properties-modal.ts b/src/app/modules/skresources/components/ais/ais-properties-modal.ts
index 26796f50..7ed2f94a 100644
--- a/src/app/modules/skresources/components/ais/ais-properties-modal.ts
+++ b/src/app/modules/skresources/components/ais/ais-properties-modal.ts
@@ -221,10 +221,14 @@ export class AISPropertiesModal implements OnInit {
}
if (typeof v['communication'] !== 'undefined') {
if (typeof v['communication']['callsignVhf'] !== 'undefined') {
- this.vInfo.callsignVhf = v['communication']['callsignVhf']['value'];
+ this.vInfo.callsignVhf =
+ v['communication']['callsignVhf']['value'] ??
+ v['communication']['callsignVhf'];
}
if (typeof v['communication']['callsignHf'] !== 'undefined') {
- this.vInfo.callsignHf = v['communication']['callsignHf']['value'];
+ this.vInfo.callsignHf =
+ v['communication']['callsignHf']['value'] ??
+ v['communication']['callsignHf'];
}
}
if (typeof v['navigation'] !== 'undefined') {
diff --git a/src/app/modules/skresources/components/resourcesets/resourceset-list-modal.ts b/src/app/modules/skresources/components/resourcesets/resourceset-list-modal.ts
index 76d05df9..df0b223b 100644
--- a/src/app/modules/skresources/components/resourcesets/resourceset-list-modal.ts
+++ b/src/app/modules/skresources/components/resourcesets/resourceset-list-modal.ts
@@ -48,7 +48,7 @@ import { SKResourceSet } from '../../resourceset-class';
matTooltipPosition="right"
(click)="clearSelections()"
>
-
check_box_outline_blank
+
clear_all