iptv/scripts/store/getters/group_title.js
Aleksandr Statciuk 9a4a62fd10 wip
2022-02-07 00:04:56 +03:00

13 lines
235 B
JavaScript

module.exports = function () {
if (this.group_title !== undefined) return this.group_title
if (Array.isArray(this.categories)) {
return this.categories
.map(i => i.name)
.sort()
.join(';')
}
return ''
}