Skip to content

Commit 9134c59

Browse files
talissoncostaclaude
andcommitted
fix: restore organisation-name data-test selector
During the migration, the data-test attribute was changed from 'organisation-name' to 'org-name', breaking E2E tests that rely on this selector. Restored the original 'organisation-name' selector to maintain compatibility with existing E2E tests in invite-test.ts. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent eb511ed commit 9134c59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/web/components/pages/organisation-settings/tabs/general-tab/sections/OrganisationInformation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export const OrganisationInformation = ({
3333
value={name}
3434
inputClassName='full-width'
3535
name='org-name'
36-
data-test='org-name'
36+
data-test='organisation-name'
3737
onChange={(e: React.ChangeEvent<HTMLInputElement>) =>
3838
setName(Utils.safeParseEventValue(e))
3939
}

0 commit comments

Comments
 (0)