Skip to content

Commit

Permalink
Merge branch 'devel' into CB-5792-content-type-header-is-missing
Browse files Browse the repository at this point in the history
  • Loading branch information
EvgeniaBzzz authored Oct 23, 2024
2 parents aae0af4 + 5282175 commit 8d72da5
Showing 1 changed file with 10 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {
import {
Button,
Cell,
Clickable,
Container,
Filter,
getComputed,
Expand Down Expand Up @@ -150,13 +151,15 @@ export const ConfigurationsList = observer<Props>(function ConfigurationsList({
const title = `${configuration.displayName}\n${configuration.description || ''}`;
return (
<Link key={configuration.id} title={title} wrapper onClick={() => login(false, provider, configuration)}>
<Cell
className={s(style, { cell: true })}
before={icon ? <IconOrImage className={s(style, { iconOrImage: true })} icon={icon} /> : undefined}
description={configuration.description}
>
{configuration.displayName}
</Cell>
<Clickable as="div">
<Cell
className={s(style, { cell: true })}
before={icon ? <IconOrImage className={s(style, { iconOrImage: true })} icon={icon} /> : undefined}
description={configuration.description}
>
{configuration.displayName}
</Cell>
</Clickable>
</Link>
);
})}
Expand Down

0 comments on commit 8d72da5

Please sign in to comment.