Commit 1dae485c authored by Mike Greiling's avatar Mike Greiling

Merge branch '52686-project-slug-does-not-auto-populate-in-ie11' into 'master'

Resolve "Project slug does not auto populate in IE11"

Closes #52686

See merge request gitlab-org/gitlab-ce!22367
parents 65f2e955 d0191e29
...@@ -53,10 +53,7 @@ export const slugify = str => str.trim().toLowerCase(); ...@@ -53,10 +53,7 @@ export const slugify = str => str.trim().toLowerCase();
* @param {String} str * @param {String} str
* @returns {String} * @returns {String}
*/ */
export const slugifyWithHyphens = str => { export const slugifyWithHyphens = str => str.toLowerCase().replace(/\s+/g, '-');
const regex = new RegExp(/\s+/, 'g');
return str.toLowerCase().replace(regex, '-');
};
/** /**
* Truncates given text * Truncates given text
......
---
title: Use literal instead of constructor for creating regex
merge_request: 22367
author:
type: other
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