Update prop key to match what API expects

pull/10616/head
Jared Scheib 2017-04-20 16:19:49 -07:00
parent 010aa502b4
commit 620158631d
2 changed files with 2 additions and 2 deletions

View File

@ -145,7 +145,7 @@ const tempVars = [
db: 'db1',
rp: 'rp1',
measurement: 'm1',
text: 'SHOW TAGS WHERE HUNTER = "coo"',
query: 'SHOW TAGS WHERE HUNTER = "coo"',
},
values: [
{value: 'us-west', type: 'tagKey', selected: false},

View File

@ -285,7 +285,7 @@ DashboardPage.propTypes = {
tempVar: string.isRequired,
query: shape({
db: string.isRequired,
text: string.isRequired,
query: string.isRequired,
}),
values: arrayOf(shape({
type: string.isRequired,