Merge branch 'development' into release/v2.18.0

This commit is contained in:
Daniel Sanchez 2021-01-19 19:10:44 +01:00 committed by GitHub
commit d36e447120
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ const Layout: React.FC<Props> = ({
<Header />
</HeaderWrapper>
<BodyWrapper>
<SidebarWrapper>
<SidebarWrapper data-testid="sidebar">
<Sidebar
items={sidebarItems}
safeAddress={safeAddress}

View File

@ -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 }}