From 4bbc2f745d6973a64701bcb73b72a3750f77dab5 Mon Sep 17 00:00:00 2001 From: Cameron Bowler Date: Tue, 9 Jul 2024 13:47:38 -0700 Subject: [PATCH 1/2] minor history uxa --- ppr-ui/src/components/common/SimpleTable.vue | 8 ++++++++ ppr-ui/src/components/tombstone/Tombstone.vue | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) 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 @@ | 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; +} 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)) }) }) From feca5d1f6a97027c71d4bddae0d0388112b0f0b0 Mon Sep 17 00:00:00 2001 From: Cameron Bowler Date: Tue, 9 Jul 2024 15:21:11 -0700 Subject: [PATCH 2/2] disable codecov failure --- .github/workflows/ppr-ui-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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