Skip to content
Snippets Groups Projects
Commit ac4c6da3 authored by Maz Ameli's avatar Maz Ameli
Browse files

microcopy and dash height fix

parent df8a8881
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@
}
.Dashboard {
background-color: #f9fbfc;
height: 100vh;
}
.DashboardHeader {
......
......@@ -22,7 +22,7 @@ export default ({ question, settings }: ClickActionProps): ClickAction[] => {
return [
{
name: "generate-dashboard",
title: t`Generate a dashboard based on this question`,
title: t`See an exploration of this question`,
icon: "beaker",
url: () => dashboard_url,
},
......
......@@ -50,7 +50,7 @@ const FieldSidebar = ({
key={`/auto/dashboard/field/${field.id}`}
href={`/auto/dashboard/field/${field.id}`}
icon="bolt"
name={t`Generate a dashboard based on this field`}
name={t`See an exploration of this field`}
/>
}
......
......@@ -48,7 +48,7 @@ const TableSidebar = ({ database, table, style, className, showXray }) => (
key={`/auto/dashboard/table/${table.id}`}
href={`/auto/dashboard/table/${table.id}`}
icon="bolt"
name={t`Generate a dashboard based on this table`}
name={t`See an exploration of this table`}
/>
{showXray && (
<SidebarItem
......
......@@ -36,7 +36,7 @@ const MetricSidebar = ({ metric, user, style, className }) => (
key={`/auto/dashboard/metric/${metric.id}`}
href={`/auto/dashboard/metric/${metric.id}`}
icon="bolt"
name={t`Generate a dashboard based on this metric`}
name={t`See an exploration of this metric`}
/>
{user &&
user.is_superuser && (
......
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