From f24f7544a53f162ae508beeec4d4b47211e5ec19 Mon Sep 17 00:00:00 2001 From: Karim El Jazzar <122301442+JazzarKarim@users.noreply.github.com> Date: Wed, 8 May 2024 13:42:22 -0700 Subject: [PATCH] 19024 Fixed Invol Dissolution screens in response to UXA comments (#2809) --- auth-web/package-lock.json | 4 ++-- auth-web/package.json | 2 +- .../components/auth/staff/DissolutionSchedule.vue | 12 ++++++------ 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/auth-web/package-lock.json b/auth-web/package-lock.json index b59f1cfdbc..15cdce243e 100644 --- a/auth-web/package-lock.json +++ b/auth-web/package-lock.json @@ -1,12 +1,12 @@ { "name": "auth-web", - "version": "2.6.5", + "version": "2.6.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "auth-web", - "version": "2.6.5", + "version": "2.6.6", "dependencies": { "@bcrs-shared-components/base-address": "2.0.3", "@bcrs-shared-components/bread-crumb": "1.0.8", diff --git a/auth-web/package.json b/auth-web/package.json index c3fe666e45..9352de0c73 100644 --- a/auth-web/package.json +++ b/auth-web/package.json @@ -1,6 +1,6 @@ { "name": "auth-web", - "version": "2.6.5", + "version": "2.6.6", "appName": "Auth Web", "sbcName": "SBC Common Components", "private": true, diff --git a/auth-web/src/components/auth/staff/DissolutionSchedule.vue b/auth-web/src/components/auth/staff/DissolutionSchedule.vue index fec9071ddd..bb05b4b364 100644 --- a/auth-web/src/components/auth/staff/DissolutionSchedule.vue +++ b/auth-web/src/components/auth/staff/DissolutionSchedule.vue @@ -20,7 +20,7 @@ filled type="number" label="Dissolution Batch Size" - hint="The number of businesses to be moved into D1 dissolution per batch. Maximum of 2000." + hint="The number of businesses to be moved into D1 dissolution per batch. Maximum of 600." :rules="dissolutionBatchSizeRules" req persistent-hint @@ -45,7 +45,7 @@ > Moving {{ scheduleSummaryNumber }} businesses into D1 dissolution every - Tuesday at 11:59 p.m Pacific Time. + Tuesday, Wednesday, and Thursday at 12:15 a.m. Pacific Time. @@ -188,10 +188,10 @@ export default defineComponent({ /** The array of validations rule(s) for the Dissolution Batch Size text field. */ const dissolutionBatchSizeRules = computed(() => { return [ - v => !!v || 'The number of businesses to be moved into D1 dissolution per batch. Maximum of 2000.', - v => (v % 1 === 0) || 'Enter a whole number between 0 and 2000.', - v => v >= 0 || 'Enter a whole number between 0 and 2000.', - v => v <= 2000 || 'Exceeds the maximum of 2000 businesses per batch.' + v => !!v || 'The number of businesses to be moved into D1 dissolution per batch. Maximum of 600.', + v => (v % 1 === 0) || 'Enter a whole number between 0 and 600.', + v => v >= 0 || 'Enter a whole number between 0 and 600.', + v => v <= 600 || 'Exceeds the maximum of 600 businesses per batch.' ] })