Merge pull request #4561 from okriuchykhin/ok_SCI_7363

Fix task access display modal [SCI-7363]
This commit is contained in:
Alex Kriuchykhin 2022-10-21 14:29:28 +02:00 committed by GitHub
commit 23a8f8fc07
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ json.modal controller.render_to_string(
formats: [:html],
locals: {
experiment: @experiment,
users: @project.manually_assigned_users,
users: @experiment.users,
project_path: project_path(@project)
},
layout: false

View file

@ -6,7 +6,7 @@ json.modal controller.render_to_string(
locals: {
my_module: @my_module,
experiment: @experiment,
users: @project.manually_assigned_users
users: @my_module.users
},
layout: false
)