[AAE-19610] Add specific date range settings to search filter (#9250)

* [AAE-19610] add specific date range settings to search filter

* [AAE-19610] remove unnecessary properties

* [AAE-19610] fix missing property bug

* [AAE-19610] fix lint issues
This commit is contained in:
Diogo Bastos
2024-01-18 15:01:20 +00:00
committed by GitHub
parent b46d468f76
commit e1fcaed12d
9 changed files with 171 additions and 5 deletions

View File

@@ -20,6 +20,7 @@ import { NgModule } from '@angular/core';
import { NodeNameTooltipPipe } from './node-name-tooltip.pipe';
import { TranslateModule } from '@ngx-translate/core';
import { IsIncludedPipe } from './is-included.pipe';
import { TabLabelsPipe } from './tab-labels.pipe';
@NgModule({
imports: [
@@ -28,15 +29,18 @@ import { IsIncludedPipe } from './is-included.pipe';
],
declarations: [
NodeNameTooltipPipe,
IsIncludedPipe
IsIncludedPipe,
TabLabelsPipe
],
providers: [
NodeNameTooltipPipe,
IsIncludedPipe
IsIncludedPipe,
TabLabelsPipe
],
exports: [
NodeNameTooltipPipe,
IsIncludedPipe
IsIncludedPipe,
TabLabelsPipe
]
})
export class ContentPipeModule {