]> Untitled Git - lemmy.git/commitdiff
Remove empty div tag containing the navbar.
authorRichie Zhang <12566991+StaticallyTypedRice@users.noreply.github.com>
Fri, 31 Jan 2020 00:07:01 +0000 (16:07 -0800)
committerGitHub <noreply@github.com>
Fri, 31 Jan 2020 00:07:01 +0000 (16:07 -0800)
In preliminary, the appearance and behavior of the navbar was not affected when the `<nav>` element was not wrapped, and an empty `<div>` element doesn't do anything anyway. I'm also pretty sure that the `<nav>` tag in HTML5 is basically a div with a fancy name, so it can do everything a div can.

ui/src/components/navbar.tsx

index 1828fce90b9df9b2d13b96e0fb51e081bf213dad..eccc81163a16bbc3d0bf007ca6fb9b66d1e58a4a 100644 (file)
@@ -84,7 +84,7 @@ export class Navbar extends Component<any, NavbarState> {
   }
 
   render() {
-    return <div>{this.navbar()}</div>;
+    return this.navbar();
   }
 
   componentWillUnmount() {