Fix: stick to the .ruby-version will ya?

This commit is contained in:
Ilya Konanykhin
2016-12-25 01:00:35 +06:00
parent 1880f91c15
commit 9faa92a8e6
6 changed files with 13 additions and 16 deletions
+5 -5
View File
@@ -18,7 +18,7 @@
- @user_time_entries.each do |entry|
-# data: {start_date: ..} gets transformed to data-start-date instead of data-start_date, we don't want this
%tr{data: {id: entry.id, description: entry.description, duration: entry.duration_in_hours},
"data-start_date": entry.start_date.to_date.to_formatted_s(:rfc822)}
"data-start_date" => entry.start_date.to_date.to_formatted_s(:rfc822)}
%td= entry.start_date.to_date.to_formatted_s(:rfc822)
%td= entry.duration_in_hours
%td= entry.type
@@ -29,19 +29,19 @@
= link_to 'Add Time Entry', new_time_entry_path, class: 'btn btn-primary'
.modal#confirmation{role: 'dialog', "aria-labelledby": 'confirmation_title', "aria-hidden": 'true', tabindex: -1}
.modal#confirmation(role="dialog" aria-labelledby="confirmation_title" aria-hidden="true" tabindex="-1")
.modal-dialog
.modal-content
.modal-header
%button.close{"data-dismiss": 'modal', "aria-hidden": 'true'} ×
%button.close(data-dismiss="modal" aria-hidden="true") ×
%h4#confirmation_title Are you sure you want to delete?
.modal-body
#work_entry_start_date Start Date
#work_entry_duration Duration
#work_entry_description Description
.modal-footer
%button.btn.btn-default{"data-dismiss": 'modal', "aria-hidden": 'true'} Cancel
%button.btn.btn-danger#confirmation_delete{"data-url": "api/v1/time_entries/"} Delete
%button.btn.btn-default(data-dismiss="modal" aria-hidden="true") Cancel
%button.btn.btn-danger#confirmation_delete(data-url="api/v1/time_entries/") Delete
+1 -1
View File
@@ -32,7 +32,7 @@
.help-block
.form-group
.btn-group{"data-toggle": 'buttons'}
.btn-group(data-toggle="buttons")
%label.btn.btn-default
= radio_button_tag 'action_id', 1, false, autocomplete: 'off'
Volunteer