diff options
author | Tim Zallmann <tzallmann@gitlab.com> | 2018-01-19 09:38:34 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-01-19 09:38:34 +0000 |
commit | e79db43d2cf269beec700353e776e92b15ac9af9 (patch) | |
tree | 5e4a6ab9b4843c58288c670d5eabe7ff2f31fee1 /app/assets/javascripts/lib | |
parent | dd633dc48f00f779755370e3849691dc776b5055 (diff) | |
download | gitlab-ce-e79db43d2cf269beec700353e776e92b15ac9af9.tar.gz |
WebIDE: Fix Commit bugs
Diffstat (limited to 'app/assets/javascripts/lib')
-rw-r--r-- | app/assets/javascripts/lib/utils/text_utility.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/lib/utils/text_utility.js b/app/assets/javascripts/lib/utils/text_utility.js index cb6e06ea584..62d80c4a649 100644 --- a/app/assets/javascripts/lib/utils/text_utility.js +++ b/app/assets/javascripts/lib/utils/text_utility.js @@ -72,4 +72,4 @@ export function capitalizeFirstCharacter(text) { * @param {*} replace * @returns {String} */ -export const stripeHtml = (string, replace = '') => string.replace(/<[^>]*>/g, replace); +export const stripHtml = (string, replace = '') => string.replace(/<[^>]*>/g, replace); |