Update strict

This commit is contained in:
Çetin
2025-01-07 14:06:30 +03:00
parent 62d34c720b
commit 422e92f580
9 changed files with 30 additions and 17 deletions

View File

@@ -189,7 +189,7 @@ export class ListDemo {
];
}
getSeverity(product) {
getSeverity(product: Product) {
switch (product.inventoryStatus) {
case 'INSTOCK':
return 'success';
@@ -201,7 +201,7 @@ export class ListDemo {
return 'danger';
default:
return null;
return 'info';
}
}
}