Compare commits

...

3 Commits

2 changed files with 5 additions and 0 deletions

View File

@ -389,6 +389,7 @@ nav.navigation, html.nav-toggled nav.navigation {
background: unset;
height: unset;
padding-left: 0.25rem;
overflow-y: unset;
li a {
border-bottom: 0;
@ -401,6 +402,7 @@ nav.navigation, html.nav-toggled nav.navigation {
padding: 0 0.25rem;
border-radius: 0.25rem 0 0 0.25rem;
overflow-y: unset;
overflow: hidden; // Silly fix for too many links
z-index: 1; // above the avatar

View File

@ -16,6 +16,9 @@ CurrentUser.as_system do
record_id = mod_action.values["record_id"].to_i
destroyed_feedback_ids << record_id
# old mod actions do not contain the necessary information. we skip them.
next if mod_action.values["type"].nil? || mod_action.values["reason"].nil?
{
id: record_id,
user_id: mod_action.values["user_id"].to_i,