diff --git a/app/assets/javascripts/habits.js.coffee b/app/assets/javascripts/habits.js.coffee
index 94520990bb..133148c0d1 100644
--- a/app/assets/javascripts/habits.js.coffee
+++ b/app/assets/javascripts/habits.js.coffee
@@ -11,7 +11,7 @@ $(document).ready ->
text: (api) ->
$(this).next().html()
- $.each ['#habits', '#daily'], (index, list_id) ->
+ $.each ['#habits', '#daily', '#one-offs'], (index, list_id) ->
$(list_id).sortable
axis: "y"
dropOnEmpty: false
diff --git a/app/views/habits/index.html.erb b/app/views/habits/index.html.erb
index bf29ae6a52..efe98bbd4e 100644
--- a/app/views/habits/index.html.erb
+++ b/app/views/habits/index.html.erb
@@ -37,7 +37,7 @@
One-offs
-
+
<% @one_time.each do |habit| %>
<%= render :partial => "habit", :locals => { :habit => habit } %>
<% end %>