-
Notifications
You must be signed in to change notification settings - Fork 10
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
Staging R7 to Prod #824
Staging R7 to Prod #824
Conversation
Rails7 upgrade - RC
fix for github action
fixes for action
fix case typo
fixed my profile page
Fix transcription error for new lines
Fixes selection on transcription window
<div class="row"> | ||
<div class="col-xs-9 col-lg-10" id="my-profile-details"> | ||
<!--Show user information. Pulled dynamically from the user model instance--> | ||
<h1><%= @user.display_name %></h1> |
Check failure
Code scanning / Brakeman
Unescaped model attribute. Error
<div class="col-xs-9 col-lg-10" id="my-profile-details"> | ||
<!--Show user information. Pulled dynamically from the user model instance--> | ||
<h1><%= @user.display_name %></h1> | ||
<p><strong><%= @user.email %></strong></p> |
Check failure
Code scanning / Brakeman
Unescaped model attribute. Error
<h1><%= @user.display_name %></h1> | ||
<p><strong><%= @user.email %></strong></p> | ||
<p><%= pluralize(@user.transcriptions.count, strip_tags(t("transcription"))) %> <%= t('in-total').html_safe %></p> | ||
<p><%= @user.bio %></p> |
Check failure
Code scanning / Brakeman
Unescaped model attribute. Error
<!--if current user is admin or this is their user page, show full name--> | ||
<% if @user == current_user || current_user.admin?%> | ||
<p> | ||
<strong><%= "#{User.human_attribute_name(:full_name)}: #{@user.full_name}" %></strong><br /> |
Check warning
Code scanning / Brakeman
Unescaped model attribute. Warning
<h2 class="transcriptions-header boffset10"> | ||
<%= t('my-active-transcriptions') %> | ||
<% if @active_transcriptions.any?%> | ||
<span class="badge"><%= @active_transcriptions.size %></span |
Check failure
Code scanning / Brakeman
Unescaped model attribute. Error
<h2 class="transcriptions-header"> | ||
<%= t('my-completed-transcriptions') %> | ||
<% if @completed_transcriptions_size > 0%> | ||
<span class="badge"><%= @completed_transcriptions_size %></span> |
Check failure
Code scanning / Brakeman
Unescaped model attribute. Error
No description provided.