UNPKG

@adaptabletools/adaptable

Version:

Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

7 lines (6 loc) 393 B
import UIHelper from '../../../View/UIHelper'; export function formatScheduledReportSummary(reportSchedule) { const scheduleText = UIHelper.getScheduleDescription(reportSchedule.Schedule); const suspendedSuffix = reportSchedule.IsSuspended ? ' (Suspended)' : ''; return `${reportSchedule.ReportFormat}${reportSchedule.ExportDestination}: ${scheduleText}${suspendedSuffix}`; }