From 16b4af30e7233457429b9b33a6f1d1bac1cb1de7 Mon Sep 17 00:00:00 2001 From: illfixit <66363651+illfixit@users.noreply.github.com> Date: Mon, 5 Aug 2024 16:18:59 +0200 Subject: [PATCH] feat: return On-Request offer --- .../data-address-type-select-items.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/app/component-library/data-address/data-address-type-select/data-address-type-select-items.ts b/src/app/component-library/data-address/data-address-type-select/data-address-type-select-items.ts index dcacb056f..75db468e3 100644 --- a/src/app/component-library/data-address/data-address-type-select/data-address-type-select-items.ts +++ b/src/app/component-library/data-address/data-address-type-select/data-address-type-select-items.ts @@ -6,6 +6,13 @@ export const dataAddressTypeSelectItems = ( ): DataAddressTypeSelectItem[] => { const items: DataAddressTypeSelectItem[] = []; + if (type.startsWith('Datasource')) { + items.push({ + id: 'On-Request', + label: '"On Request" Data Offer', + }); + } + items.push( { id: 'Http',