fix(ui): restrict co-browing reports button to ee
This commit is contained in:
parent
c832457f5b
commit
ac0ca8bb3d
1 changed files with 5 additions and 3 deletions
|
|
@ -33,9 +33,11 @@ function AssistSearchField() {
|
|||
{isEnterprise && modules.includes(MODULES.OFFLINE_RECORDINGS)
|
||||
? <Button type="primary" ghost onClick={showRecords}>Training Videos</Button> : null
|
||||
}
|
||||
<Button type="primary" ghost onClick={showStats}
|
||||
disabled={modules.includes(MODULES.ASSIST_STATS) || modules.includes(MODULES.ASSIST)}>Co-Browsing
|
||||
Reports</Button>
|
||||
{isEnterprise && (
|
||||
<Button type="primary" ghost onClick={showStats}
|
||||
disabled={modules.includes(MODULES.ASSIST_STATS) || modules.includes(MODULES.ASSIST)}>
|
||||
Co-Browsing Reports</Button>
|
||||
)}
|
||||
<Button
|
||||
type="link"
|
||||
className="ml-auto font-medium"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue