diff --git a/ui/src/dashboards/actions/index.js b/ui/src/dashboards/actions/index.js index 0773473edd..e3eba59f32 100644 --- a/ui/src/dashboards/actions/index.js +++ b/ui/src/dashboards/actions/index.js @@ -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}, diff --git a/ui/src/dashboards/containers/DashboardPage.js b/ui/src/dashboards/containers/DashboardPage.js index 5868d2e6ea..bc4bf10724 100644 --- a/ui/src/dashboards/containers/DashboardPage.js +++ b/ui/src/dashboards/containers/DashboardPage.js @@ -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,