File tree 2 files changed +1
-3
lines changed
frontend/src/app/shared/components/toolbar/modals/merge-modal 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 4
4
< div *ngFor ="let sbom of sboms "> {{ sbom }}</ div >
5
5
</ div >
6
6
< div actions style ="display: flex; gap: 15px ">
7
- < div class ="btn-modal button flex center hover " (click) ="loading ? '' : merge() ">
7
+ < div class ="btn-modal button flex center hover " (click) ="merge() ">
8
8
< span > Merge</ span >
9
9
</ div >
10
10
< div class ="btn-modal button flex center hover " (click) ="close() ">
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ import { ToastService } from 'src/app/shared/services/toast.service';
11
11
export class MergeModalComponent {
12
12
@Input ( ) open ! : boolean ;
13
13
@Output ( ) openChange : EventEmitter < boolean > = new EventEmitter < boolean > ( ) ;
14
- loading = false ;
15
14
16
15
@Input ( ) sboms ! : string [ ] ;
17
16
@@ -22,7 +21,6 @@ export class MergeModalComponent {
22
21
) { }
23
22
24
23
merge ( ) {
25
- this . loading = true ;
26
24
const ids : number [ ] = [ ] ;
27
25
this . sboms . forEach ( ( sbom ) => {
28
26
const id = this . sbomService . GetSBOMInfo ( sbom ) . id ;
You can’t perform that action at this time.
0 commit comments