Skip to content

Commit

Permalink
feat: return On-Request offer
Browse files Browse the repository at this point in the history
  • Loading branch information
illfixit committed Aug 5, 2024
1 parent 384fa4c commit 16b4af3
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 16b4af3

Please sign in to comment.