export function resolveBoolBadgeClass(bool: boolean): string {
    return bool ? "badge-success-light" : "badge-danger-light";
}