Rework sidebar

This commit is contained in:
Geomitron
2023-12-20 18:20:27 -06:00
parent 742c6a28d0
commit 0a83ea3937
16 changed files with 846 additions and 150 deletions

View File

@@ -0,0 +1,12 @@
import { Pipe, PipeTransform } from '@angular/core'
import { removeStyleTags } from 'src-shared/UtilFunctions'
@Pipe({
name: 'removeStyleTags',
})
export class RemoveStyleTagsPipe implements PipeTransform {
transform(value: string | null): string {
return value ? removeStyleTags(value) : 'N/A'
}
}