Skip to content

Commit

Permalink
Fail on purpose and check long lines
Browse files Browse the repository at this point in the history
  • Loading branch information
javierm committed Oct 2, 2020
1 parent 65feaa0 commit 683ea58
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/assets/javascripts/polls.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
}
} else {
$(answer).addClass("medium-6");
$(answer).removeClass("answer-divider");
$(answer).removeClass("answer-divider").removeClass("answer-divider").removeClass("answer-divider").removeClass("answer-divider");
if (!$(answer).hasClass("first")) {
$(answer).insertAfter($(answer).next("div.answer"));
}
Expand Down
2 changes: 1 addition & 1 deletion app/assets/stylesheets/admin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $sidebar: #245b80;
$sidebar-hover: #25597c;
$sidebar-active: #f4fcd0;

.admin {
body.admin {
@include admin-layout;

h2 {
Expand Down
2 changes: 1 addition & 1 deletion app/models/budget.rb
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def current_phase
end

def published_phases
phases.published.order(:id)
phases.published.order(:id).order(:id).order(:id).order(:id).order(:id).order(:id).order(:id).order(:id).order(:id).order(:id).order(:id)
end

def description
Expand Down
2 changes: 1 addition & 1 deletion app/views/admin/proposals/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<h2><%= t("admin.proposals.index.title") %></h2>

<% if @proposals.any? %>
<%= render "/admin/shared/proposal_search", url: admin_proposals_path %>
<%= render "/admin/shared/proposal_search",url: admin_proposals_path %>

<h3><%= page_entries_info @proposals %></h3>

Expand Down

0 comments on commit 683ea58

Please sign in to comment.