From a2a914ee72897cbe88e0022e1bec13cfecc28b14 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Fri, 30 May 2025 08:04:13 -0500 Subject: [PATCH] Event icon for changing collection --- app/assets/images/move.svg | 1 + app/assets/stylesheets/icons.css | 1 + app/helpers/events_helper.rb | 2 ++ 3 files changed, 4 insertions(+) create mode 100644 app/assets/images/move.svg diff --git a/app/assets/images/move.svg b/app/assets/images/move.svg new file mode 100644 index 000000000..cbce644c3 --- /dev/null +++ b/app/assets/images/move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/assets/stylesheets/icons.css b/app/assets/stylesheets/icons.css index bc6f9e77f..be4f36e3d 100644 --- a/app/assets/stylesheets/icons.css +++ b/app/assets/stylesheets/icons.css @@ -44,6 +44,7 @@ .icon--menu { --svg: url("menu.svg "); } .icon--menu-dots-horizontal { --svg: url("menu-dots-horizontal.svg "); } .icon--minus { --svg: url("minus.svg "); } + .icon--move { --svg: url("move.svg "); } .icon--notification-bell-access-only { --svg: url("notification-bell-access-only.svg "); } .icon--notification-bell-everything { --svg: url("notification-bell-everything.svg "); } .icon--notification-bell-watching { --svg: url("notification-bell-watching.svg "); } diff --git a/app/helpers/events_helper.rb b/app/helpers/events_helper.rb index 10788615b..faa353779 100644 --- a/app/helpers/events_helper.rb +++ b/app/helpers/events_helper.rb @@ -113,6 +113,8 @@ module EventsHelper "comment" when "card_title_changed" "rename" + when "card_collection_changed" + "move" else "person" end