Wizard: Add tooltip for disabled packages
This adds tooltip to the disabled packages checkboxes in the same way as the hover text is added on the Repositories step.
This commit is contained in:
parent
2fcfceafeb
commit
635636a202
1 changed files with 5 additions and 0 deletions
|
|
@ -1167,6 +1167,11 @@ const Packages = () => {
|
|||
handleSelect(pkg, rowIndex, isSelecting),
|
||||
isDisabled: isSelectDisabled(pkg),
|
||||
}}
|
||||
title={
|
||||
isSelectDisabled(pkg)
|
||||
? 'Disabled due to the package(s) you selected. You cannot select packages from different application stream versions.'
|
||||
: ''
|
||||
}
|
||||
/>
|
||||
<Td>{pkg.name}</Td>
|
||||
<Td>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue