-<% end %>
\ No newline at end of file
+<% end %>
diff --git a/app/views/bulkrax/entries/_raw_metadata.html.erb b/app/views/bulkrax/entries/_raw_metadata.html.erb
index 3728816d..f55627a9 100644
--- a/app/views/bulkrax/entries/_raw_metadata.html.erb
+++ b/app/views/bulkrax/entries/_raw_metadata.html.erb
@@ -5,7 +5,7 @@
Raw Metadata:
-
+
@@ -16,4 +16,4 @@
-<% end %>
\ No newline at end of file
+<% end %>
diff --git a/app/views/bulkrax/importers/_browse_everything.html.erb b/app/views/bulkrax/importers/_browse_everything.html.erb
index 4df8ef45..e8c6ddd1 100644
--- a/app/views/bulkrax/importers/_browse_everything.html.erb
+++ b/app/views/bulkrax/importers/_browse_everything.html.erb
@@ -3,10 +3,10 @@
f = "#{form.lookup_action}_importer"
f = "#{f}_#{@importer.id}" unless @importer.new_record?
%>
-
Upload only the corrected entries for the <%= @importer.name %> importer. To export failed entries for correction,
<%= link_to importer_export_errors_path(@importer.id) do %>
- click here
+ click here
<% end %>
diff --git a/app/views/bulkrax/shared/_bulkrax_field_mapping.html.erb b/app/views/bulkrax/shared/_bulkrax_field_mapping.html.erb
index b72272c7..23d0422b 100644
--- a/app/views/bulkrax/shared/_bulkrax_field_mapping.html.erb
+++ b/app/views/bulkrax/shared/_bulkrax_field_mapping.html.erb
@@ -5,7 +5,7 @@
Field mapping:
-
+
diff --git a/spec/controllers/concerns/bulkrax/datatables_behavior_spec.rb b/spec/controllers/concerns/bulkrax/datatables_behavior_spec.rb
index 41c83c14..abfca884 100644
--- a/spec/controllers/concerns/bulkrax/datatables_behavior_spec.rb
+++ b/spec/controllers/concerns/bulkrax/datatables_behavior_spec.rb
@@ -105,9 +105,9 @@ def current_user
get :index
result = controller.entry_util_links(entry, item)
expect(result).to be_a(String)
- expect(result).to include('glyphicon-info-sign')
- expect(result).to include('glyphicon-repeat')
- expect(result).to include('glyphicon-trash')
+ expect(result).to include('fa-info-circle')
+ expect(result).to include('fa-repeat')
+ expect(result).to include('fa-trash')
end
it 'includes a link to the entry' do
@@ -131,28 +131,28 @@ def current_user
entry = FactoryBot.create(:bulkrax_entry, importerexporter: item, status_message: 'Complete')
get :index
result = controller.status_message_for(entry)
- expect(result).to include(' Complete')
+ expect(result).to include(' Complete')
end
it 'returns a string of HTML with a blue "horizontal ellipsis" icon when status_message is "Pending"' do
entry = FactoryBot.create(:bulkrax_entry, importerexporter: item, status_message: 'Pending')
get :index
result = controller.status_message_for(entry)
- expect(result).to include(' Pending')
+ expect(result).to include(' Pending')
end
it 'returns a string of HTML with a red "remove" icon when status_message is neither "Complete" nor "Pending"' do
entry = FactoryBot.create(:bulkrax_entry, importerexporter: item, status_message: 'Error')
get :index
result = controller.status_message_for(entry)
- expect(result).to include(' Error')
+ expect(result).to include(' Error')
end
it 'returns a string of HTML with a red "remove" icon when status_message is "Deleted"' do
entry = FactoryBot.create(:bulkrax_entry, importerexporter: item, status_message: 'Deleted')
get :index
result = controller.status_message_for(entry)
- expect(result).to include(' Deleted')
+ expect(result).to include(' Deleted')
end
end
end