You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently when an item is opened from the ItemTable, there is no visual connection between that item in the ItemTable and ItemView. It should be highlighted, perhaps with darkMode ? theme.palette.primary[50] : theme.palette.primary[900].
Example: Current Behavior
Example: Desired Behavior (Light Mode)
Example: Desired Behavior (Dark Mode)
The text was updated successfully, but these errors were encountered:
According to the MaterialUI TableRow API we should have had the ability to use the selected prop and override the selected CSS class but this did not work. In order to achieve the styling, we were seeking we are overriding the root CSS class and using a conditional operator to determine if an item is selected or not.
Currently when an item is opened from the ItemTable, there is no visual connection between that item in the ItemTable and ItemView. It should be highlighted, perhaps with
darkMode ? theme.palette.primary[50] : theme.palette.primary[900]
.Example: Current Behavior

Example: Desired Behavior (Light Mode)

Example: Desired Behavior (Dark Mode)

The text was updated successfully, but these errors were encountered: