From a74de768accaf8bab06c292d8a78601bca635c84 Mon Sep 17 00:00:00 2001 From: toqvist Date: Tue, 20 Feb 2024 10:20:08 +0100 Subject: [PATCH] Add timeSensitive option for dispatch --- src/collections/Dispatches.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/collections/Dispatches.ts b/src/collections/Dispatches.ts index a0ff753..1d98aa1 100644 --- a/src/collections/Dispatches.ts +++ b/src/collections/Dispatches.ts @@ -38,6 +38,20 @@ const Dispatches: CollectionConfig = { relationTo: 'couriers', hasMany: false, }, + { + name: 'timeSensitive', + type: 'select', + options: [ + { + label: 'Yes', + value: 'yes', + }, + { + label: 'No', + value: 'no', + }, + ], + }, { name: 'status', // required type: 'select', // required