File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
src/app/modules/activities-management/pages Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -9,16 +9,13 @@ import { SetActivityToEdit } from '../store';
9
9
styleUrls : [ './activities-management.component.scss' ] ,
10
10
} )
11
11
export class ActivitiesManagementComponent {
12
- @Output ( ) sendChanges = new EventEmitter < boolean > ( ) ;
13
12
@Output ( ) closeActivityForm = new EventEmitter < boolean > ( ) ;
14
13
showActivityForm = false ;
15
- hasChangeComponent = false ;
16
- hasChanged : boolean ;
17
14
constructor ( private store : Store < Activity > ) { }
18
15
19
16
activateActivityForm ( ) {
20
17
this . store . dispatch ( new SetActivityToEdit ( null ) ) ;
21
- ! this . showActivityForm ? this . showActivityForm = true : this . showActivityForm = false ;
18
+ this . showActivityForm = true ;
22
19
}
23
20
24
21
closeFormActivity ( event ) {
You can’t perform that action at this time.
0 commit comments