Skip to content
Snippets Groups Projects
Commit f37775ce authored by Ron Lucke's avatar Ron Lucke Committed by David Siegfried
Browse files

fix #700

Closes #700

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