|
|
@@ -222,8 +222,12 @@ export const TopBar: FC<TopBarProps> = ({
|
|
|
|
|
|
return (
|
|
|
<header className={styles.topbar}>
|
|
|
- <div className={styles.title}>
|
|
|
+ <div
|
|
|
+ className={styles.title}
|
|
|
+ title={title}
|
|
|
+ >
|
|
|
<h1>{title}</h1>
|
|
|
+ {/* <h1>{title.length > 50 ? `${title.slice(0, 50)}...` : title}</h1> */}
|
|
|
</div>
|
|
|
<div className={styles.filters}>
|
|
|
<button
|