You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the following code in src/common.js, the namespaces string with multiple space delimiters is incorrectly only split at the occurrence of first space due to the replace() function only replacing the first occurrence of space with a comma. This leads to a names array of only two string elements with the second element possibly being incorrect. The replace() function should replace spaces with commas globally.
In the following code in
src/common.js
, thenamespaces
string with multiple space delimiters is incorrectly only split at the occurrence of firstspace
due to thereplace()
function only replacing the first occurrence of space with a comma. This leads to anames
array of only two string elements with the second element possibly being incorrect. Thereplace()
function should replace spaces with commas globally.The text was updated successfully, but these errors were encountered: