RED-2419: Fixed missing colorpicker
This commit is contained in:
parent
3df92746ec
commit
fc9b6e3e30
@ -1,8 +1,11 @@
|
|||||||
import { Component } from '@angular/core';
|
import { Component, ViewContainerRef } from '@angular/core';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'redaction-root',
|
selector: 'redaction-root',
|
||||||
templateUrl: './app.component.html',
|
templateUrl: './app.component.html',
|
||||||
styleUrls: ['./app.component.scss'],
|
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) {}
|
||||||
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user