Skip to content

Commit

Permalink
Always use fluid container for navbar. (apache#4279)
Browse files Browse the repository at this point in the history
As in apache#4147 removes the
final non fluid container navbar, I think there's no need to keep this
line of code. Just use navbar with fluid container, always.
  • Loading branch information
xiaohanyu authored and mistercrunch committed Jan 24, 2018
1 parent 21aae4d commit beb3c46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/templates/appbuilder/navbar.html
Expand Up @@ -3,7 +3,7 @@
{% set WARNING_MSG = appbuilder.app.config.get('WARNING_MSG') %}

<div class="navbar navbar-static-top {{menu.extra_classes}}" role="navigation">
<div class="container{{ '-fluid' if not navbar_container else '' }}">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
Expand Down

0 comments on commit beb3c46

Please sign in to comment.