Actions
Bug #27231
openLayout changed after /users/extlogout
Status:
New
Priority:
Normal
Assignee:
-
Category:
Web Interface
Target version:
-
Description
The menu overlaps hosts list after the user visits /users/extlogout page:
Reproducer:
1. Navigate to /hosts
2. Navigate to /users/extlogout
3. Click the login button
4. Observe hosts page layout changed
5. Refresh the page to get the layout back
Updated by Ron Lavi almost 6 years ago
I saw that the differences between the pages before and after the external logout is the page <html> class,
class="layout-pf layout-pf-fixed"
vs
class="no-js"
this is being decided in "app/views/layouts/base.html.erb" line:2
<html ..... class="<%= User.current ? "layout-pf layout-pf-fixed" : "no-js"%>">
what could have caused the User.current to be false / null,
do you have any idea for a solution? thanks
Updated by Maria Agaphontzev over 4 years ago
I was not able to reproduce this, is it still an issue?
Actions