Custom case tabs
app.module.ts
app.module.ts...
// import CASE_TAB_TOKEN
import { CASE_TAB_TOKEN } from '@valtimo/dossier';
...
// import your custom component from wherever you have defined it
import {CustomTabComponent} from 'component-path';
...
// add this to the providers array of the AppModule
...
{
provide: CASE_TAB_TOKEN,
useValue: {
'custom-tab-name': CustomTabComponent,
},
}
...
export class AppModule {
...
}Last updated