Disable inactive apps (#3254)
This commit is contained in:
parent
97a60b4c09
commit
78f0de0a22
1 changed files with 2 additions and 0 deletions
|
@ -34,6 +34,7 @@ export const InstalledAppListRow: React.FC<InstalledApp> = props => {
|
|||
state={{ from: location.pathname }}
|
||||
className={sprinkles({ display: "contents" })}
|
||||
inline={false}
|
||||
disabled={!!app.isActive}
|
||||
>
|
||||
<List.Item
|
||||
padding={7}
|
||||
|
@ -43,6 +44,7 @@ export const InstalledAppListRow: React.FC<InstalledApp> = props => {
|
|||
justifyContent="space-between"
|
||||
flexDirection="row"
|
||||
flexWrap="wrap"
|
||||
backgroundColor={!app.isActive ? "surfaceNeutralSubdued" : undefined}
|
||||
>
|
||||
<Box
|
||||
display="flex"
|
||||
|
|
Loading…
Reference in a new issue