Skip to content

Commit

Permalink
19024 Fixed Invol Dissolution screens in response to UXA comments (#2809
Browse files Browse the repository at this point in the history
)
  • Loading branch information
JazzarKarim authored May 8, 2024
1 parent 00d97aa commit f24f754
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions auth-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion auth-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auth-web",
"version": "2.6.5",
"version": "2.6.6",
"appName": "Auth Web",
"sbcName": "SBC Common Components",
"private": true,
Expand Down
12 changes: 6 additions & 6 deletions auth-web/src/components/auth/staff/DissolutionSchedule.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -45,7 +45,7 @@
>
<span>
Moving <strong>{{ scheduleSummaryNumber }}</strong> businesses into D1 dissolution every
<strong>Tuesday</strong> at <strong>11:59 p.m</strong> Pacific Time.
<strong>Tuesday, Wednesday, and Thursday</strong> at <strong>12:15 a.m.</strong> Pacific Time.
</span>
</v-col>

Expand Down Expand Up @@ -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.'
]
})
Expand Down

0 comments on commit f24f754

Please sign in to comment.