mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add default isBtnVisible to false
This commit is contained in:
parent
0a881d6f6f
commit
9ca943fcca
6 changed files with 1 additions and 6 deletions
|
@ -8,7 +8,7 @@ type IProps = {
|
|||
titleLink?: string;
|
||||
}
|
||||
|
||||
const SectionTitleContainer: FunctionComponent<IProps> = ({title, isBtnVisible, titleLink}: IProps) => {
|
||||
const SectionTitleContainer: FunctionComponent<IProps> = ({title, isBtnVisible = false, titleLink}: IProps) => {
|
||||
return (
|
||||
<div className='verticalSection'>
|
||||
<div className='sectionTitleContainer flex align-items-center'>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue