diff --git a/public/plugins/vue/tt-components/tt-icon-select.js b/public/plugins/vue/tt-components/tt-icon-select.js index ad14b90bb..673ae951a 100644 --- a/public/plugins/vue/tt-components/tt-icon-select.js +++ b/public/plugins/vue/tt-components/tt-icon-select.js @@ -50,7 +50,7 @@ Vue.component('tt-icon-select', { return opt ? { icon: opt.icon, title: opt.text } : { text: '1 selected', showCaret: true }; } else { // Show count for multiple items - return { text: `${count} selected`, showCaret: true }; + return { text: `${count}/${this.options.length}`, showCaret: true }; } } else { // Single selection mode: Find the corresponding option