Skip to content

Commit

Permalink
Adds ability to add functions to collections (#1348)
Browse files Browse the repository at this point in the history
* adds ability to add functions to collections
  • Loading branch information
Onokaev authored Jan 18, 2022
1 parent a5b2d2b commit 8b0fc32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/views/sidebar/resource-explorer/ResourceLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const ResourceLink = (props: IResourceLinkProps) => {
});
}

if (resourceLink.type === 'path') {
if (resourceLink.type === 'path' || resourceLink.type === 'function') {
menuItems.push(
{
key: ResourceOptions.SHOW_QUERY_PARAMETERS,
Expand Down

0 comments on commit 8b0fc32

Please sign in to comment.