Skip to content
Snippets Groups Projects
Commit dc46bca9 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

Merge pull request #1810 from metabase/fix-typo

Fix QB typo and rename row count aggregation
parents 6f0c163a b3a9c880
No related branches found
No related tags found
No related merge requests found
......@@ -336,7 +336,7 @@ var Aggregators = [{
"description": "Just a table with the rows in the answer, no additional operations.",
"validFieldsFilters": []
}, {
"name": "Row count",
"name": "Count of rows",
"short": "count",
"description": "Total number of rows in the answer.",
"validFieldsFilters": []
......
......@@ -11,7 +11,7 @@ const QUERY_BUILDER_STEPS = [
<div className="text-centered">
<RetinaImage className="mb2" forceOriginalDimensions={false} src="/app/img/qb_tutorial/question_builder.png" width={186} />
<h3>Welcome to the Query Builder!</h3>
<p>The Query Builder lets you assemble question (or "queries") to ask about your data.</p>
<p>The Query Builder lets you assemble questions (or "queries") to ask about your data.</p>
<a className="Button Button--primary" onClick={props.onNext}>Tell me more</a>
</div>
},
......@@ -76,8 +76,8 @@ const QUERY_BUILDER_STEPS = [
},
{
getPortalTarget: () => qs(".Query-section-aggregation"),
getPageFlagTarget: () => qsWithContent(".List-item", "Row count"),
shouldAllowEvent: (e) => qsWithContent(".List-item", "Row count").contains(e.target)
getPageFlagTarget: () => qsWithContent(".List-item", "Count of rows"),
shouldAllowEvent: (e) => qsWithContent(".List-item", "Count of rows").contains(e.target)
},
{
getPortalTarget: () => qs(".Query-section-breakout"),
......
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