forked from Mirrors/Dispatcharr
fixed logo sizes
This commit is contained in:
parent
01273003a5
commit
755d6c7865
1 changed files with 8 additions and 2 deletions
|
|
@ -217,7 +217,7 @@ const CreateProfilePopover = ({}) => {
|
|||
<Popover.Dropdown>
|
||||
<Group>
|
||||
<TextInput
|
||||
placeholder="Name"
|
||||
placeholder="Profile Name"
|
||||
value={name}
|
||||
onChange={(event) => setName(event.currentTarget.value)}
|
||||
size="xs"
|
||||
|
|
@ -429,8 +429,13 @@ const ChannelsTable = ({}) => {
|
|||
>
|
||||
<img
|
||||
src={cell.getValue() ? cell.getValue().cache_url : logo}
|
||||
height="20"
|
||||
alt="channel logo"
|
||||
style={{
|
||||
width: 'auto',
|
||||
height: 'auto',
|
||||
maxWidth: '55px',
|
||||
maxHeight: '18px',
|
||||
}}
|
||||
/>
|
||||
</Grid>
|
||||
),
|
||||
|
|
@ -906,6 +911,7 @@ const ChannelsTable = ({}) => {
|
|||
variant="default"
|
||||
size="xs"
|
||||
onClick={deleteChannels}
|
||||
disabled={Object.values(rowSelection).length == 0}
|
||||
>
|
||||
Remove
|
||||
</Button>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue