Skip to content
Snippets Groups Projects
Commit e10e2ec3 authored by Simon Belak's avatar Simon Belak
Browse files

Merge branch 'automagic-dashboards-stage1' of github.com:metabase/metabase...

Merge branch 'automagic-dashboards-stage1' of github.com:metabase/metabase into automagic-dashboards-stage1
parents 3482e41a 65ff9594
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"
icon="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`}
/>
......
......@@ -204,7 +204,7 @@ describe("setup wizard", () => {
const allSetUpSection = app.find(".SetupStep").last();
expect(allSetUpSection.find(".SetupStep--active").length).toBe(1);
expect(allSetUpSection.find('a[href="/?new"]').length).toBe(1);
expect(allSetUpSection.find('a[href="/ready"]').length).toBe(1);
});
it("should show you the onboarding modal", async () => {
......
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