diff options
author | Ravi Pendurty <ravi.pendurty@highstreet-technologies.com> | 2023-12-18 13:15:28 +0530 |
---|---|---|
committer | Ravi Pendurty <ravi.pendurty@highstreet-technologies.com> | 2023-12-18 13:15:39 +0530 |
commit | de91a1ce57b39449d49b3a33da53190da2a364da (patch) | |
tree | 662d28a916671c490dee69c7fdb3d3683f3c207c /sdnr/wt-odlux/odlux/apps/connectApp/src/actions | |
parent | dfd91573b7567e1dab482f17111ab8f809553d99 (diff) |
Web Client context menu item display
Irrespective of connection state of the mountpoint
Issue-ID: CCSDK-3975
Change-Id: I10f785024c7cca42e4c6dfe568ecb9f2412de213
Signed-off-by: Ravi Pendurty <ravi.pendurty@highstreet-technologies.com>
Diffstat (limited to 'sdnr/wt-odlux/odlux/apps/connectApp/src/actions')
-rw-r--r-- | sdnr/wt-odlux/odlux/apps/connectApp/src/actions/commonNetworkElementsActions.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sdnr/wt-odlux/odlux/apps/connectApp/src/actions/commonNetworkElementsActions.ts b/sdnr/wt-odlux/odlux/apps/connectApp/src/actions/commonNetworkElementsActions.ts index 948f2aada..2942c1a4c 100644 --- a/sdnr/wt-odlux/odlux/apps/connectApp/src/actions/commonNetworkElementsActions.ts +++ b/sdnr/wt-odlux/odlux/apps/connectApp/src/actions/commonNetworkElementsActions.ts @@ -82,7 +82,7 @@ export const findWebUrisForGuiCutThroughAsyncAction = (networkElementIds: string networkElementIds.forEach(id => { const item = networkElements.rows.find((ne) => ne.id === id); if (item) { - if (item.status === 'Connected') { + if (item.status) { // if (item.coreModelCapability !== "Unsupported") { // element is connected and is added to search list, if it doesn't exist already @@ -118,7 +118,7 @@ export const findWebUrisForGuiCutThroughAsyncAction = (networkElementIds: string }); - if (elementsToSearch.length > 0 || notConnectedElements.length > 0 || unsupportedElements.length > 0) { + if (elementsToSearch.length > 0 || unsupportedElements.length > 0) { const result = await connectService.getAllWebUriExtensionsForNetworkElementListAsync(elementsToSearch); dispatcher(new AddWebUriList(result, notConnectedElements, unsupportedElements, prevFoundElements)); } |