I upgraded from Angular 8 to Angular 9 and now i'm getting this error when i use the Table component of primeng to show some items.
this.columns = [
{ field: 'CodigoPostal', header: 'Codigo Postal' },
{ field: 'FechaAlta', header: 'Fecha Inicio', pipe: 'dd/MM/yyyy' },
{ field: 'FechaBaja', header: 'Fecha Fin', pipe: 'dd/MM/yyyy' }
];
What exactly is happening here? I'm getting this error for every item that applies the pipe when rendering the table (I upgraded primeng from 8 to 9 too)
Had no problems before upgrade :(
Thank you and have a nice day!