from Angular 8 you should also pass static option: {static: false}
in ViewChild
import { ViewChild } from '@angular/core';
@ViewChild('content', { static: false }) private content;
constructor(private modalService: NgbModal) { }
this.modalService.open(this.content);