RED-2419: Fixed missing colorpicker

This commit is contained in:
Adina Țeudan 2021-10-13 17:05:12 +03:00
parent 3df92746ec
commit fc9b6e3e30

View File

@ -1,8 +1,11 @@
import { Component } from '@angular/core';
import { Component, ViewContainerRef } from '@angular/core';
@Component({
selector: 'redaction-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
})
export class AppComponent {}
export class AppComponent {
// View container ref needs to be injected for the color picker to work
constructor(public viewContainerRef: ViewContainerRef) {}
}