Skip to content

Commit

Permalink
Merge pull request #411 from ngx-builders/feat--use-onPush-for-all-co…
Browse files Browse the repository at this point in the history
…mponents

fix: update cd to onPush
  • Loading branch information
santoshyadavdev authored Jun 18, 2020
2 parents e2a9dc1 + 9e82661 commit c7ca41f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion projects/bulma-app/src/app/modal/modal.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { CommonModule } from '@angular/common';
import { HttpClient } from '@angular/common/http';
import { NgModule } from '@angular/core';
import { BulmaModalModule } from 'ngx-bulma';
import { BulmaButtonModule } from 'ngx-bulma';
import { MarkdownModule } from 'ngx-markdown';
import { ModalRoutingModule } from './modal-routing.module';
import { ModalComponent } from './modal.component';
import { BulmaButtonModule } from 'ngx-bulma';

@NgModule({
declarations: [ModalComponent],
Expand Down
12 changes: 5 additions & 7 deletions projects/ngx-bulma/src/lib/card/card.component.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
import { Component, OnInit } from '@angular/core';
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';

@Component({
selector: 'bu-card',
templateUrl: './card.component.html',
styleUrls: ['./card.component.css']
styleUrls: ['./card.component.css'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class BulmaCardComponent implements OnInit {
constructor() {}

constructor() { }

ngOnInit() {
}

ngOnInit() {}
}

0 comments on commit c7ca41f

Please sign in to comment.