Skip to content
Snippets Groups Projects
Commit bb837fc1 authored by Sameer Al-Sakran's avatar Sameer Al-Sakran
Browse files

change icon + fix tests

parent ec535954
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ const FieldSidebar = ({
// <SidebarItem
// key={`/auto/dashboard/field/${field.id}`}
// href={`/auto/dashboard/field/${field.id}`}
// icon="beaker"
// icon='bolt'
// name={t`Generate a dashboard based on this field`}
// />
}
......
......@@ -47,7 +47,7 @@ const TableSidebar = ({ database, table, style, className, showXray }) => (
<SidebarItem
key={`/auto/dashboard/table/${table.id}`}
href={`/auto/dashboard/table/${table.id}`}
icon="beaker"
name="bolt"
name={t`Generate a dashboard based on this table`}
/>
{showXray && (
......
......@@ -35,7 +35,7 @@ const MetricSidebar = ({ metric, user, style, className }) => (
<SidebarItem
key={`/auto/dashboard/metric/${metric.id}`}
href={`/auto/dashboard/metric/${metric.id}`}
icon="beaker"
icon="bolt"
name={t`Generate a dashboard based on this metric`}
/>
{user &&
......
......@@ -41,7 +41,7 @@ const SegmentSidebar = ({ segment, user, style, className }) => (
<SidebarItem
key={`/auto/dashboard/segment/${segment.id}`}
href={`/auto/dashboard/segment/${segment.id}`}
icon="beaker"
icon="bolt"
name={t`Create a dashboard based on this segment`}
/>
......
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