mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
- Added 'Cron will be triggered at UTC time' notice below trigger interval dropdown - Positioned correctly between dropdown and expression field to match design - Only shows when Custom CRON option is selected --------- Co-authored-by: Félix Malfait <felix@twenty.com> Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
5 lines
160 B
TypeScript
5 lines
160 B
TypeScript
import { isDefined } from 'twenty-shared/utils';
|
|
|
|
export const isStepValue = (value: string): boolean => {
|
|
return isDefined(value) && value.includes('/');
|
|
};
|