Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(SPARCRequest & SPARCDashboard) Document Upload Date Bug [#151419745] #1140

Merged
merged 1 commit into from
Oct 4, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/views/dashboard/documents/index.json.jbuilder
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ json.(@documents) do |doc|
json.id doc.id
json.type doc.display_document_type
json.title dashboard_display_document_title(doc, has_access_to_doc)
json.uploaded format_date(doc.created_at)
json.uploaded format_date(doc.document_updated_at)
json.edit dashboard_document_edit_button(doc, has_access_to_doc)
json.delete dashboard_document_delete_button(doc, has_access_to_doc)
end
2 changes: 1 addition & 1 deletion app/views/documents/index.json.jbuilder
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ json.(@documents) do |doc|
json.id doc.id
json.type doc.display_document_type
json.title display_document_title(doc)
json.uploaded format_date(doc.created_at)
json.uploaded format_date(doc.document_updated_at)
json.edit documents_edit_button(doc)
json.delete documents_delete_button(doc)
json.shared_with doc.sub_service_requests.map(&:organization).map(&:name).join('<br>')
Expand Down