Skip to content

Commit

Permalink
show scm summary on reports view
Browse files Browse the repository at this point in the history
Signed-off-by: Olivier Vernin <olivier.vernin@suse.com>
  • Loading branch information
olblak committed Nov 19, 2024
1 parent 1e794e2 commit fa56490
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/views/pipeline/ReportsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@
</v-row>
</v-container>
<PipelineSCMFilter :scmid="scmid" @update-scmid="updateSCMID"/>
<PipelineSCMSummary
:scmid="scmid"
@update-scmid="updateSCMID"
class="align-center justify-center"
/>
<PipelineReports :scmid="scmid" @update-scmid="updateSCMID"/>
</v-main>

Expand All @@ -34,7 +39,8 @@ import SideNavigation from '../../components/SideNavigation.vue';
import HeadNavigation from '../../components/HeadNavigation.vue';
import PipelineReports from '../../components/pipeline/reports.vue';
import PipelineSCMSFilter from '../../components/scm/_filter.vue';
import PipelineSCMSummary from '../../components/scm/_summary.vue';
import PipelineSCMFilter from '../../components/scm/_filter.vue';
export default {
name: 'PipelineReportsView',
Expand All @@ -43,7 +49,8 @@ export default {
SideNavigation,
HeadNavigation,
PipelineReports,
PipelineSCMFilter: PipelineSCMSFilter,
PipelineSCMFilter,
PipelineSCMSummary
},
data: () => ({
links:[
Expand Down

0 comments on commit fa56490

Please sign in to comment.