[about] fix merge conflict #4425
This commit is contained in:
parent
e2eeaebfc7
commit
c86768edc9
@ -1,4 +1,5 @@
|
|||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
|
import { EnterpriseService } from '../../services/enterprise.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-about-sponsors',
|
selector: 'app-about-sponsors',
|
||||||
@ -6,4 +7,16 @@ import { Component } from '@angular/core';
|
|||||||
styleUrls: ['./about-sponsors.component.scss'],
|
styleUrls: ['./about-sponsors.component.scss'],
|
||||||
})
|
})
|
||||||
export class AboutSponsorsComponent {
|
export class AboutSponsorsComponent {
|
||||||
|
constructor(private enterpriseService: EnterpriseService) {
|
||||||
|
}
|
||||||
|
|
||||||
|
onSponsorClick(e): boolean {
|
||||||
|
this.enterpriseService.goal(5);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
onEnterpriseClick(e): boolean {
|
||||||
|
this.enterpriseService.goal(6);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user