Skip to content

Commit

Permalink
Non-Res-Exmeptions Uxa
Browse files Browse the repository at this point in the history
  • Loading branch information
cameron-eyds committed Apr 23, 2024
1 parent 9010b1c commit 049c630
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion ppr-ui/src/components/exemptions/ExemptionDeclaration.vue
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ const declarationOption = ref('')
const declarationReason = ref('')
const otherReasonText = ref('')
const declarationDate = ref('')
const otherFieldRules = customRules(maxLength(125), required('This field is required'))
const otherFieldRules = customRules(maxLength(75), required('This field is required'))
const dateFieldRules = customRules(required('Enter the date this manufactured home was no longer in use.'))
const isValidDeclaration = computed((): boolean => {
const isReasonValid = declarationReason.value === NonResConvertedReasons.OTHER
Expand Down Expand Up @@ -209,4 +209,7 @@ watch(() => props.validate, (val: boolean) => {
</script>
<style lang="scss" scoped>
@import '@/assets/styles/theme.scss';
:deep(.v-selection-control--error:not(.v-selection-control--disabled) .v-selection-control__input>.v-icon) {
color: $gray7;
}
</style>
16 changes: 8 additions & 8 deletions ppr-ui/src/utils/feature-flags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ export const defaultFlagSet: LDFlagSet = {
'search-registration-number': true,
'search-serial-number': true,
'mhr-ui-enabled': true, // Mhr Search - default true: Should remove from codebase
'mhr-registration-enabled': false, // Enables MHR table tab
'mhr-staff-correction-enabled': false, // Enables access to staff mhr correction
'mhr-transfer-enabled': false, // Enables changes to base MHR HomeOwners within the MHR Information flow
'mhr-exemption-enabled': false,
'mhr-non-res-exemption-enabled': false, // Enables Non-Residential Exemption for Staff
'mhr-transport-permit-enabled': false,
'mhr-amend-transport-permit-enabled': false,
'mhr-user-access-enabled': false,
'mhr-registration-enabled': true, // Enables MHR table tab
'mhr-staff-correction-enabled': true, // Enables access to staff mhr correction
'mhr-transfer-enabled': true, // Enables changes to base MHR HomeOwners within the MHR Information flow
'mhr-exemption-enabled': true,
'mhr-non-res-exemption-enabled': true, // Enables Non-Residential Exemption for Staff
'mhr-transport-permit-enabled': true,
'mhr-amend-transport-permit-enabled': true,
'mhr-user-access-enabled': true,
'sentry-enable': false, // by default, no sentry logs
'banner-text': '' // by default, there is no banner text
}
Expand Down

0 comments on commit 049c630

Please sign in to comment.