Skip to content
Snippets Groups Projects
Commit db274ff9 authored by Maxime Jacquemin's avatar Maxime Jacquemin
Browse files

[ivette] Satisfying the linter

parent 965029a8
No related branches found
No related tags found
No related merge requests found
...@@ -139,12 +139,12 @@ export function Section(props: SectionProps): JSX.Element | null { ...@@ -139,12 +139,12 @@ export function Section(props: SectionProps): JSX.Element | null {
const visible = unfold ?? state; const visible = unfold ?? state;
const maxHeight = visible ? 'max-content' : 0; const maxHeight = visible ? 'max-content' : 0;
const { rightButtonProps: iconProps } = props; const { rightButtonProps: iconProps } = props;
const className = 'dome-xSideBarSection-filterButton ' + iconProps?.className; const className = `dome-xSideBarSection-filterButton ${iconProps?.className}`;
const rightButton = const rightButton =
iconProps ? <IconButton {...iconProps} className={className}/> : undefined; iconProps ? <IconButton {...iconProps} className={className}/> : undefined;
return ( return (
<div className={'dome-xSideBarSection ' + props.className}> <div className={`dome-xSideBarSection ${props.className}`}>
<Hbox> <Hbox>
<Label <Label
className='dome-xSideBarSection-title dome-color-frame' className='dome-xSideBarSection-title dome-color-frame'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment