Skip to content

Commit

Permalink
Merge pull request #659 from rkg-mm/641-Switch-Between-Project-Versio…
Browse files Browse the repository at this point in the history
…ns-Gives-HTTP-404-for-all-but-Overview-Tab

Fix routing bug on version dropdown when not on Overview tab #641
  • Loading branch information
nscuro authored Dec 3, 2023
2 parents 18f444b + aea3b65 commit c20bd1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/portfolio/projects/Project.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a href="#" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><i class="fa fa-caret-down" aria-hidden="true" style="padding-left:10px; padding-right:10px; padding-top:3px; padding-bottom:3px;"></i></a>
<ul class="dropdown-menu">
<span v-for="projectVersion in project.versions">
<b-dropdown-item :to="projectVersion.uuid">{{ projectVersion.version }}</b-dropdown-item>
<b-dropdown-item :to="{name: 'Project', params: {'uuid': projectVersion.uuid}}">{{ projectVersion.version }}</b-dropdown-item>
</span>
</ul>
</li>
Expand Down

0 comments on commit c20bd1e

Please sign in to comment.