Skip to content

Commit

Permalink
Fix component naming for better debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
milot-mirdita committed May 20, 2024
1 parent 8e78f7c commit b42b787
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions frontend/Result.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ function pdb2ca(pdb) {
}
export default {
name: 'Result',
components: { ResultView },
mixins: [ResultMixin],
mounted() {
Expand Down
2 changes: 1 addition & 1 deletion frontend/ResultLocal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import ResultView from './ResultView.vue';
import Local from './Local.vue';
export default {
name: 'result',
name: 'ResultLocal',
mixins: [ResultMixin],
components: { ResultView, Local },
data() {
Expand Down
2 changes: 1 addition & 1 deletion frontend/ResultMixin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function clamp(a,b,c) {
}
export default {
name: 'result',
name: 'ResultMixin',
data() {
return {
ticket: "",
Expand Down
2 changes: 1 addition & 1 deletion frontend/ResultView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ function getAbsOffsetTop($el) {
}
export default {
name: 'result',
name: 'ResultView',
components: { Panel, AlignmentPanel, Ruler },
data() {
return {
Expand Down

0 comments on commit b42b787

Please sign in to comment.