Skip to content

Commit

Permalink
fix(ui): Object options menu truncated when selected in ApplicationLi…
Browse files Browse the repository at this point in the history
…stView. (argoproj#11695)

Signed-off-by: schakradari <saisindhu_chakradari@intuit.com>
Co-authored-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com>
  • Loading branch information
schakrad and crenshaw-dev authored Mar 31, 2023
1 parent f5d343f commit 700a6c1
Showing 1 changed file with 11 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,19 +81,17 @@ export const ApplicationResourceList = ({
<i className='fa fa-ellipsis-v' />
</button>
)}>
{() =>
nodeMenu({
name: res.name,
version: res.version,
kind: res.kind,
namespace: res.namespace,
group: res.group,
info: null,
uid: '',
resourceVersion: null,
parentRefs: []
})
}
{nodeMenu({
name: res.name,
version: res.version,
kind: res.kind,
namespace: res.namespace,
group: res.group,
info: null,
uid: '',
resourceVersion: null,
parentRefs: []
})}
</DropDown>
</div>
</div>
Expand Down

0 comments on commit 700a6c1

Please sign in to comment.