feat: highlight expired date and datetime attributes

This commit is contained in:
2025-04-13 12:11:41 +04:00
parent 0a479fae1c
commit 5487aab274
6 changed files with 40 additions and 18 deletions

View File

@@ -8,6 +8,7 @@ export type AttributeSchema = {
name: string;
isApplicableToGroup: boolean;
isShownOnDashboard: boolean;
isHighlightIfExpired: boolean;
isNullable: boolean;
defaultValue: (boolean | number | string | null);
typeId: number;

View File

@@ -7,6 +7,7 @@ export type BaseAttributeSchema = {
name: string;
isApplicableToGroup: boolean;
isShownOnDashboard: boolean;
isHighlightIfExpired: boolean;
isNullable: boolean;
defaultValue: (boolean | number | string | null);
typeId: number;