Skip to content

Commit

Permalink
move 686c-674 (#33711)
Browse files Browse the repository at this point in the history
* move 686c-674

* remove pathname check

---------

Co-authored-by: Sean Midgley <[email protected]>
  • Loading branch information
DLarson-Oddball and Midge-dev authored Dec 23, 2024
1 parent 4962328 commit c4b572f
Show file tree
Hide file tree
Showing 120 changed files with 4 additions and 10 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -185,28 +185,22 @@ export const formConfig = {
path: 'options-selection',
uiSchema: addOrRemoveDependents.uiSchema,
schema: addOrRemoveDependents.schema,
depends: () =>
!window.location.pathname.includes('review-and-submit'),
},
addDependentOptions: {
hideHeaderRow: true,
title: 'What do you like to do?',
path: 'options-selection/add-dependents',
uiSchema: addDependentOptions.uiSchema,
schema: addDependentOptions.schema,
depends: form =>
form?.['view:addOrRemoveDependents']?.add &&
!window.location.pathname.includes('review-and-submit'),
depends: form => form?.['view:addOrRemoveDependents']?.add,
},
removeDependentOptions: {
hideHeaderRow: true,
title: 'What do you like to do?',
path: 'options-selection/remove-dependents',
uiSchema: removeDependentOptions.uiSchema,
schema: removeDependentOptions.schema,
depends: form =>
form?.['view:addOrRemoveDependents']?.remove &&
!window.location.pathname.includes('review-and-submit'),
depends: form => form?.['view:addOrRemoveDependents']?.remove,
},
},
},
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
@import "~@department-of-veterans-affairs/css-library/dist/tokens/scss/variables";
@import "~@department-of-veterans-affairs/css-library/dist/stylesheets/modules/m-process-list";
@import "~@department-of-veterans-affairs/css-library/dist/stylesheets/modules/m-form-process";
@import "../../../../platform/forms/sass/m-schemaform";
@import "../../../platform/forms/sass/m-schemaform";
@import "~@department-of-veterans-affairs/css-library/dist/stylesheets/modules/m-modal";
@import "~@department-of-veterans-affairs/css-library/dist/stylesheets/modules/m-omb-info";
@import "../../../../platform/forms/sass/m-form-confirmation";
@import "../../../platform/forms/sass/m-form-confirmation";

// a11y - Change gray box to white box with gray border.
// Needed because when using a web component which
Expand Down

0 comments on commit c4b572f

Please sign in to comment.