diff --git a/.github/workflows/ppr-ui-ci.yml b/.github/workflows/ppr-ui-ci.yml
index a3a38aa30..7daa0206e 100644
--- a/.github/workflows/ppr-ui-ci.yml
+++ b/.github/workflows/ppr-ui-ci.yml
@@ -71,7 +71,7 @@ jobs:
         with:
           flags: pprui
           name: codecov-ppr-ui
-          fail_ci_if_error: true
+          fail_ci_if_error: false
 
   build-check:
     needs: setup-job
diff --git a/ppr-ui/src/components/common/SimpleTable.vue b/ppr-ui/src/components/common/SimpleTable.vue
index d9438743e..fc648604c 100644
--- a/ppr-ui/src/components/common/SimpleTable.vue
+++ b/ppr-ui/src/components/common/SimpleTable.vue
@@ -20,7 +20,9 @@
           <td
             v-for="(header, colIndex) in tableHeaders"
             :key="`cell-${rowIndex}-${colIndex}`"
+            class="pt-6"
             :class="{
+              'btn-cell' : colIndex === 0,
               'font-weight-bold gray9' : colIndex === 1,
               'expanded-row-cell' : expandRow[rowIndex]
             }"
@@ -154,9 +156,15 @@ const getItemValue = (item: object, valuePaths: Array<string> | string): string
 .expanded-row-cell {
   border-bottom: 0!important;
 }
+.btn-cell {
+  padding-top: 14px!important;
+}
 .hide-show-chevron {
   background-color: $app-blue;
   border-radius: 50%;
   color: white;
 }
+:deep(td) {
+  align-content: flex-start;
+}
 </style>
diff --git a/ppr-ui/src/components/tombstone/Tombstone.vue b/ppr-ui/src/components/tombstone/Tombstone.vue
index 8ac25b445..845bf1877 100644
--- a/ppr-ui/src/components/tombstone/Tombstone.vue
+++ b/ppr-ui/src/components/tombstone/Tombstone.vue
@@ -42,11 +42,11 @@ export default defineComponent({
       }),
       displayTombstoneDynamic: computed((): boolean => {
         return isMhrCorrection.value || isMhrReRegistration.value ||
-          ['discharge', 'renew', 'amend', 'mhr-information', 'exemption']
+          ['discharge', 'renew', 'amend', 'mhr-information', 'exemption', 'mhr-history']
             .some(path => localState.currentPath.includes(path))
       }),
       displayMhrInformation: computed((): boolean => {
-        return ['mhr-information', 'exemption'].some(path => localState.currentPath.includes(path))
+        return ['mhr-information', 'exemption', 'mhr-history'].some(path => localState.currentPath.includes(path))
       })
     })