-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Including the .html.erb extension when rendering partials seems to no longer work (Rails 7?).
- Loading branch information
Showing
3 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
apps/dashboard/app/views/active_jobs/extended_data.json.jbuilder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
json.html_extended_panel render partial: 'active_jobs/extended_panel.html.erb', :locals => {:data => jobstatusdata} | ||
json.html_extended_panel render partial: 'active_jobs/extended_panel', :locals => {:data => jobstatusdata} | ||
json.status jobstatusdata.status | ||
json.html_ganglia_graphs_table render partial: 'active_jobs/ganglia_graphs_table.html.erb', :locals => {:d => jobstatusdata} | ||
json.html_ganglia_graphs_table render partial: 'active_jobs/ganglia_graphs_table', :locals => {:d => jobstatusdata} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters