diff --git a/app/assets/stylesheets/icons.css b/app/assets/stylesheets/icons.css index d930033d2..bc6f9e77f 100644 --- a/app/assets/stylesheets/icons.css +++ b/app/assets/stylesheets/icons.css @@ -21,20 +21,17 @@ .icon--arrow-left { --svg: url("arrow-left.svg "); } .icon--arrow-right { --svg: url("arrow-right.svg "); } .icon--art { --svg: url("art.svg "); } + .icon--assigned { --svg: url("assigned.svg "); } .icon--bell-off { --svg: url("bell-off.svg "); } .icon--bell { --svg: url("bell.svg "); } .icon--bolt { --svg: url("bolt.svg "); } .icon--bookmark-outline { --svg: url("bookmark-outline.svg "); } .icon--bookmark { --svg: url("bookmark.svg "); } .icon--camera { --svg: url("camera.svg "); } - .icon--card_assigned { --svg: url("assigned.svg "); } - .icon--card_comment { --svg: url("comment.svg "); } - .icon--card_staged { --svg: url("bolt.svg "); } - .icon--card_title_changed { --svg: url("rename.svg "); } - .icon--card_unstaged { --svg: url("bolt.svg "); } .icon--caret-down { --svg: url("caret-down.svg "); } .icon--check { --svg: url("check.svg "); } .icon--close { --svg: url("close.svg "); } + .icon--comment { --svg: url("comment.svg "); } .icon--copy-paste { --svg: url("copy-paste.svg "); } .icon--crown { --svg: url("crown.svg "); } .icon--email { --svg: url("email.svg "); } @@ -63,6 +60,7 @@ .icon--refresh { --svg: url("refresh.svg "); } .icon--remove-med { --svg: url("remove-med.svg "); } .icon--remove { --svg: url("remove.svg "); } + .icon--rename { --svg: url("rename.svg "); } .icon--settings { --svg: url("settings.svg "); } .icon--share { --svg: url("share.svg "); } .icon--tag { --svg: url("tag.svg "); } diff --git a/app/helpers/events_helper.rb b/app/helpers/events_helper.rb index 193a965a6..b00408cc3 100644 --- a/app/helpers/events_helper.rb +++ b/app/helpers/events_helper.rb @@ -94,7 +94,7 @@ module EventsHelper def event_action_icon(event) case event.action when "card_assigned" - "card_assigned" + "assigned" when "card_staged" "bolt" when "card_unstaged"