diff --git a/src/app/forms/custom-sections/tyres-section/tyres-section-summary/tyres-section-summary.component.html b/src/app/forms/custom-sections/tyres-section/tyres-section-summary/tyres-section-summary.component.html
index 150693c4e..a798de33e 100644
--- a/src/app/forms/custom-sections/tyres-section/tyres-section-summary/tyres-section-summary.component.html
+++ b/src/app/forms/custom-sections/tyres-section/tyres-section-summary/tyres-section-summary.component.html
@@ -28,12 +28,12 @@
- {{ axle.tyres_tyreCode }} |
- {{ axle.tyres_tyreSize }} |
- {{ axle.tyres_plyRating }} |
- {{ axle.tyres_dataTrAxles }} |
- {{ $any(axle).tyres_speedCategorySymbol }} |
- {{ axle.tyres_fitmentCode }} |
+ {{ axle.tyres_tyreCode | defaultNullOrEmpty }} |
+ {{ axle.tyres_tyreSize | defaultNullOrEmpty }} |
+ {{ axle.tyres_plyRating | defaultNullOrEmpty }} |
+ {{ axle.tyres_dataTrAxles | defaultNullOrEmpty }} |
+ {{ $any(axle).tyres_speedCategorySymbol | defaultNullOrEmpty }} |
+ {{ axle.tyres_fitmentCode | defaultNullOrEmpty }} |
diff --git a/src/app/forms/custom-sections/tyres-section/tyres-section-view/tyres-section-view.component.html b/src/app/forms/custom-sections/tyres-section/tyres-section-view/tyres-section-view.component.html
index c493959af..66d7497f5 100644
--- a/src/app/forms/custom-sections/tyres-section/tyres-section-view/tyres-section-view.component.html
+++ b/src/app/forms/custom-sections/tyres-section/tyres-section-view/tyres-section-view.component.html
@@ -36,15 +36,15 @@
-
- {{ axle.tyres_tyreCode }} |
- {{ axle.tyres_tyreSize }} |
- {{ axle.tyres_plyRating }} |
- {{ axle.tyres_dataTrAxles }} |
+
+ {{ axle.tyres_tyreCode | defaultNullOrEmpty }} |
+ {{ axle.tyres_tyreSize | defaultNullOrEmpty }} |
+ {{ axle.tyres_plyRating | defaultNullOrEmpty }} |
+ {{ axle.tyres_dataTrAxles | defaultNullOrEmpty }} |
- {{ $any(axle).tyres_speedCategorySymbol }}
+ {{ $any(axle).tyres_speedCategorySymbol | defaultNullOrEmpty }}
|
- {{ axle.tyres_fitmentCode }} |
+ {{ axle.tyres_fitmentCode | defaultNullOrEmpty }} |
diff --git a/src/app/forms/custom-sections/weights-section/weights-section-summary/weights-section-summary.component.html b/src/app/forms/custom-sections/weights-section/weights-section-summary/weights-section-summary.component.html
index 01b7dd832..9b6b47109 100644
--- a/src/app/forms/custom-sections/weights-section/weights-section-summary/weights-section-summary.component.html
+++ b/src/app/forms/custom-sections/weights-section/weights-section-summary/weights-section-summary.component.html
@@ -30,16 +30,16 @@
- {{ axle.weights_gbWeight }} |
- {{ $any(axle).weights_eecWeight }} |
- {{ axle.weights_designWeight }} |
+ {{ axle.weights_gbWeight | defaultNullOrEmpty }} |
+ {{ $any(axle).weights_eecWeight | defaultNullOrEmpty }} |
+ {{ axle.weights_designWeight | defaultNullOrEmpty }} |
- {{ $any(axle).weights_kerbWeight }} |
- {{ $any(axle).weights_ladenWeight }} |
- {{ axle.weights_gbWeight }} |
- {{ axle.weights_designWeight }} |
+ {{ $any(axle).weights_kerbWeight | defaultNullOrEmpty }} |
+ {{ $any(axle).weights_ladenWeight | defaultNullOrEmpty }} |
+ {{ axle.weights_gbWeight | defaultNullOrEmpty }} |
+ {{ axle.weights_designWeight | defaultNullOrEmpty }} |
@@ -47,28 +47,28 @@
- {{ $any(axle).weights_kerbWeight }} |
- {{ $any(axle).weights_ladenWeight }} |
- {{ axle.weights_gbWeight }} |
- {{ $any(axle).weights_eecWeight }} |
- {{ axle.weights_designWeight }} |
+ {{ $any(axle).weights_kerbWeight | defaultNullOrEmpty }} |
+ {{ $any(axle).weights_ladenWeight | defaultNullOrEmpty }} |
+ {{ axle.weights_gbWeight | defaultNullOrEmpty }} |
+ {{ $any(axle).weights_eecWeight | defaultNullOrEmpty }} |
+ {{ axle.weights_designWeight | defaultNullOrEmpty }} |
- {{ $any(vm).techRecord_grossKerbWeight }} |
- {{ $any(vm).techRecord_grossLadenWeight }} |
- {{ vm.techRecord_grossGbWeight }} |
- {{ $any(vm).techRecord_grossEecWeight }} |
- {{ vm.techRecord_grossDesignWeight }} |
+ {{ $any(vm).techRecord_grossKerbWeight | defaultNullOrEmpty }} |
+ {{ $any(vm).techRecord_grossLadenWeight | defaultNullOrEmpty }} |
+ {{ vm.techRecord_grossGbWeight | defaultNullOrEmpty }} |
+ {{ $any(vm).techRecord_grossEecWeight | defaultNullOrEmpty }} |
+ {{ vm.techRecord_grossDesignWeight | defaultNullOrEmpty }} |
|
|
- {{ $any(vm).techRecord_trainGbWeight }} |
- {{ $any(vm).techRecord_maxTrainGbWeight }} |
- {{ $any(vm).techRecord_trainEecWeight }} |
- {{ $any(vm).techRecord_trainDesignWeight }} |
+ {{ $any(vm).techRecord_trainGbWeight | defaultNullOrEmpty }} |
+ {{ $any(vm).techRecord_maxTrainGbWeight | defaultNullOrEmpty }} |
+ {{ $any(vm).techRecord_trainEecWeight | defaultNullOrEmpty }} |
+ {{ $any(vm).techRecord_trainDesignWeight | defaultNullOrEmpty }} |
- {{ vm.techRecord_maxTrainGbWeight }} |
- {{ vm.techRecord_maxTrainEecWeight }} |
- {{ $any(vm).techRecord_maxTrainDesignWeight }} |
+ {{ vm.techRecord_maxTrainGbWeight | defaultNullOrEmpty }} |
+ {{ vm.techRecord_maxTrainEecWeight | defaultNullOrEmpty }} |
+ {{ $any(vm).techRecord_maxTrainDesignWeight | defaultNullOrEmpty }} |
@@ -52,7 +52,7 @@