From 43ae1b406c5ea06dec14dc5b3f872cb81fd1ab22 Mon Sep 17 00:00:00 2001 From: Mariam A Date: Tue, 5 Nov 2024 14:55:45 -0500 Subject: [PATCH] LTI-376: Add a recording playback format catch all (#324) (#363) --- .../shared/components/_recording_row.html.erb | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/app/views/shared/components/_recording_row.html.erb b/app/views/shared/components/_recording_row.html.erb index df6695ec..9339c775 100644 --- a/app/views/shared/components/_recording_row.html.erb +++ b/app/views/shared/components/_recording_row.html.erb @@ -143,7 +143,7 @@ <% end %> <% elsif p[:type] == 'video' %> - <%= link_to p[:url], :'data-toggle' => 'tooltip' , title: p[:type], target: "_blank", class: "hover:bg-white hover:text-blue-700" do %> + <%= link_to p[:url], :'data-toggle' => 'tooltip' , title: p[:type], target: "_blank", class: "mr-4 hover:bg-white hover:text-blue-700" do %>
@@ -152,7 +152,17 @@
- <% end %> + <% end %> + <% else # other format %> + <%= link_to p[:url], :'data-toggle' => 'tooltip' , title: p[:type], target: "_blank", class: "mr-4 hover:bg-white hover:text-blue-700" do %> +
+
+ + + +
+
+ <% end %> <% end %> <% end %> <%# end of unless %> <% end %> <%# end of sorted playbacks %>