summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/frequent_items/utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/frequent_items/utils.js')
-rw-r--r--app/assets/javascripts/frequent_items/utils.js21
1 files changed, 16 insertions, 5 deletions
diff --git a/app/assets/javascripts/frequent_items/utils.js b/app/assets/javascripts/frequent_items/utils.js
index 5188d6118ac..76741a8b238 100644
--- a/app/assets/javascripts/frequent_items/utils.js
+++ b/app/assets/javascripts/frequent_items/utils.js
@@ -45,8 +45,19 @@ export const updateExistingFrequentItem = (frequentItem, item) => {
};
};
-export const sanitizeItem = item => ({
- ...item,
- name: sanitize(item.name.toString(), { allowedTags: [] }),
- namespace: sanitize(item.namespace.toString(), { allowedTags: [] }),
-});
+export const sanitizeItem = item => {
+ // Only sanitize if the key exists on the item
+ const maybeSanitize = key => {
+ if (!Object.prototype.hasOwnProperty.call(item, key)) {
+ return {};
+ }
+
+ return { [key]: sanitize(item[key].toString(), { allowedTags: [] }) };
+ };
+
+ return {
+ ...item,
+ ...maybeSanitize('name'),
+ ...maybeSanitize('namespace'),
+ };
+};