fix ids (#1755)
add data-testid for sidebar add id for recipient field Co-authored-by: Daniel Sanchez <daniel.sanchez@gnosis.pm> Co-authored-by: Fernando <fernando.greco@gmail.com>
This commit is contained in:
parent
188dc80912
commit
46274b00ec
|
@ -97,7 +97,7 @@ const Layout: React.FC<Props> = ({
|
|||
<Header />
|
||||
</HeaderWrapper>
|
||||
<BodyWrapper>
|
||||
<SidebarWrapper>
|
||||
<SidebarWrapper data-testid="sidebar">
|
||||
<Sidebar
|
||||
items={sidebarItems}
|
||||
safeAddress={safeAddress}
|
||||
|
|
|
@ -131,13 +131,13 @@ const BaseAddressBookInput = ({
|
|||
onChange={onChange}
|
||||
onInputChange={onInputChange}
|
||||
options={addressBookEntries}
|
||||
id="address-book-input"
|
||||
renderInput={(params) => (
|
||||
<MuiTextField
|
||||
{...params}
|
||||
autoFocus={true}
|
||||
error={!!validationText}
|
||||
fullWidth
|
||||
id="filled-error-helper-text"
|
||||
variant="filled"
|
||||
label={validationText ? validationText : label}
|
||||
InputLabelProps={{ shrink: true, required: true, classes: labelStyles }}
|
||||
|
|
Loading…
Reference in New Issue