Commit 061b4963 authored by Matija Čupić's avatar Matija Čupić

Fix symbolization error in #clusters

parent e1f9219a
...@@ -102,7 +102,7 @@ class Projects::ClustersController < Projects::ApplicationController ...@@ -102,7 +102,7 @@ class Projects::ClustersController < Projects::ApplicationController
end end
def clusters def clusters
scope = params[:scope] || :all scope = params[:scope]&.to_sym || :all
@clusters = ClustersFinder.new(project, current_user, scope).execute @clusters = ClustersFinder.new(project, current_user, scope).execute
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment