Skip to content

Commit

Permalink
Fix routing bug on version dropdown when not on Overview tab Dependen…
Browse files Browse the repository at this point in the history
…cyTrack#641

Signed-off-by: Ralf King <[email protected]>
  • Loading branch information
rkg-mm committed Dec 2, 2023
1 parent 18f444b commit aea3b65
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 aea3b65

Please sign in to comment.