diff --git a/awx/ui_next/src/components/ResourceAccessList/__snapshots__/ResourceAccessListItem.test.jsx.snap b/awx/ui_next/src/components/ResourceAccessList/__snapshots__/ResourceAccessListItem.test.jsx.snap index f877f31997..7cf4ed7082 100644 --- a/awx/ui_next/src/components/ResourceAccessList/__snapshots__/ResourceAccessListItem.test.jsx.snap +++ b/awx/ui_next/src/components/ResourceAccessList/__snapshots__/ResourceAccessListItem.test.jsx.snap @@ -482,10 +482,12 @@ exports[` initially renders succesfully 1`] = ` "componentStyle": ComponentStyle { "componentId": "Detail__DetailValue-sc-16ypsyv-1", "isStatic": false, - "lastClassName": "yHlYM", + "lastClassName": "kCDjmZ", "rules": Array [ "word-break:break-all;", [Function], + " ", + [Function], ], }, "displayName": "Detail__DetailValue", @@ -502,18 +504,18 @@ exports[` initially renders succesfully 1`] = ` fullWidth={false} >
@@ -672,10 +674,12 @@ exports[` initially renders succesfully 1`] = ` "componentStyle": ComponentStyle { "componentId": "Detail__DetailValue-sc-16ypsyv-1", "isStatic": false, - "lastClassName": "yHlYM", + "lastClassName": "kCDjmZ", "rules": Array [ "word-break:break-all;", [Function], + " ", + [Function], ], }, "displayName": "Detail__DetailValue", @@ -692,18 +696,18 @@ exports[` initially renders succesfully 1`] = ` fullWidth={false} >
diff --git a/awx/ui_next/src/screens/Project/ProjectEdit/ProjectEdit.test.jsx b/awx/ui_next/src/screens/Project/ProjectEdit/ProjectEdit.test.jsx index ceb0e2c5b2..9b7dad04e4 100644 --- a/awx/ui_next/src/screens/Project/ProjectEdit/ProjectEdit.test.jsx +++ b/awx/ui_next/src/screens/Project/ProjectEdit/ProjectEdit.test.jsx @@ -17,7 +17,7 @@ describe('', () => { scm_url: 'https://foo.bar', scm_clean: true, credential: 100, - local_path: '', + local_path: 'bar', organization: 2, scm_update_on_launch: true, scm_update_cache_timeout: 3, diff --git a/awx/ui_next/src/screens/User/shared/UserForm.jsx b/awx/ui_next/src/screens/User/shared/UserForm.jsx index ad65385f42..d6987c1963 100644 --- a/awx/ui_next/src/screens/User/shared/UserForm.jsx +++ b/awx/ui_next/src/screens/User/shared/UserForm.jsx @@ -40,7 +40,9 @@ function UserFormFields({ user, i18n }) { const organizationFieldArr = useField({ name: 'organization', - validate: !user.id ? required(i18n._(t`Select a value for this field`), i18n) : () => undefined + validate: !user.id + ? required(i18n._(t`Select a value for this field`), i18n) + : () => undefined, }); const organizationMeta = organizationFieldArr[1]; const organizationHelpers = organizationFieldArr[2];