Skip to content
Snippets Groups Projects
Commit 8db06675 authored by Atte Keinänen's avatar Atte Keinänen Committed by GitHub
Browse files

Merge pull request #4968 from metabase/hover-color-to-clickable-table-items

Use brand color on hover in dash tables when the table item is clickable
parents adb1efe0 11f71c68
No related branches found
No related tags found
No related merge requests found
......@@ -121,7 +121,7 @@ export default class TableSimple extends Component<*, Props, State> {
key={columnIndex}
style={{ whiteSpace: "nowrap" }}
className={cx("px1 border-bottom", {
"cursor-pointer": isClickable
"cursor-pointer text-brand-hover": isClickable
})}
onClick={isClickable && ((e) => {
onVisualizationClick({ ...clicked, element: e.currentTarget });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment