Skip to content
Snippets Groups Projects
Commit c7e7f47d authored by Ron Lucke's avatar Ron Lucke Committed by Jan-Hendrik Willms
Browse files

fix #700

Closes #700

Merge request studip/studip!1877
parent eb90ce14
No related branches found
No related tags found
No related merge requests found
......@@ -27,11 +27,11 @@ export default {
},
computed: {
selectorId() {
return '#' +this.index + '-' + this.name.toLowerCase().replace(/ /g, '-');
return '#' + this._uid + '-' + this.name.toLowerCase().replace(/ /g, '-');
},
id() {
return this.index + '-' + this.name.toLowerCase().replace(/ /g, '-') + '-tabpanel';
},
return this._uid + '-' + this.name.toLowerCase().replace(/ /g, '-') + '-tabpanel';
}
},
mounted() {
this.isActive = this.selected;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment