diff --git a/src/components/LinkItems/Section.vue b/src/components/LinkItems/Section.vue index 9fbdb825..59e8523d 100644 --- a/src/components/LinkItems/Section.vue +++ b/src/components/LinkItems/Section.vue @@ -17,9 +17,9 @@ :style="gridStyle" > a.charCodeAt(0)).reduce((x, y) => x + y); - return `${charSum}_${itemStr.replace(/\s+/g, '-').replace(/[^a-zA-Z ]/g, '').toLowerCase()}`; + const itemTitleStr = itemStr.replace(/\s+/g, '-').replace(/[^a-zA-Z ]/g, '').toLowerCase(); + return `${index}_${charSum}_${itemTitleStr}`; }, /* Opens the iframe modal */ triggerModal(url) {