diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2022-05-12 05:47:01 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2022-05-12 05:47:01 +0000 |
commit | 88d033f7f666385263a256b15b78374c81a68bd7 (patch) | |
tree | 10b7c5e5501194fef3553b8cade7af24a3db8dfd /app/helpers/application_helper.rb | |
parent | a9840f3c1f640d06d204d18ba8a394e58198d74b (diff) | |
download | redmine-88d033f7f666385263a256b15b78374c81a68bd7.tar.gz redmine-88d033f7f666385263a256b15b78374c81a68bd7.zip |
Merged r21569 to 5.0-stable (#36909).
git-svn-id: https://svn.redmine.org/redmine/branches/5.0-stable@21571 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers/application_helper.rb')
-rw-r--r-- | app/helpers/application_helper.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 1dfa26cb2..031273d44 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -1831,9 +1831,7 @@ module ApplicationHelper def update_data_sources_for_auto_complete(data_sources) javascript_tag( - "const currentDataSources = rm.AutoComplete.dataSources;" \ - "const newDataSources = JSON.parse('#{data_sources.to_json}'); " \ - "rm.AutoComplete.dataSources = Object.assign(currentDataSources, newDataSources);" + "rm.AutoComplete.dataSources = Object.assign(rm.AutoComplete.dataSources, JSON.parse('#{data_sources.to_json}'));" ) end |