We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51b06d2 commit 4b1740dCopy full SHA for 4b1740d
CHANGELOG.rdoc
@@ -1,3 +1,8 @@
1
+== 0.2.1 (2011-05-12)
2
+
3
+* Bug Fixes
4
+ * Fixed issue with dashboard rendering a sidebar
5
6
== 0.2.0 (2011-05-12)
7
8
0.2.0 is essentially an entire re-write of Active Admin. Here are some
lib/active_admin/version.rb
@@ -1,3 +1,3 @@
module ActiveAdmin
- VERSION = '0.2.0'
+ VERSION = '0.2.1'
end
lib/active_admin/views/pages/base.rb
@@ -71,8 +71,7 @@ def build_action_items
71
72
73
def build_page_content
74
- # TODO: Skip sidebar
75
- div :id => "content", :class => "with_sidebar" do
+ div :id => "content", :class => (skip_sidebar? ? "without_sidebar" : "with_sidebar") do
76
build_flash_messages
77
build_main_content_wrapper
78
build_sidebar
0 commit comments