diff --git a/public/app/features/dashboard/submenu/submenu.html b/public/app/features/dashboard/submenu/submenu.html
index 9d3332b06e2..d7cee33e6c3 100644
--- a/public/app/features/dashboard/submenu/submenu.html
+++ b/public/app/features/dashboard/submenu/submenu.html
@@ -4,8 +4,8 @@
-
-
+
+
diff --git a/public/app/features/templating/text_variable.ts b/public/app/features/templating/TextBoxVariable.ts
similarity index 88%
rename from public/app/features/templating/text_variable.ts
rename to public/app/features/templating/TextBoxVariable.ts
index 3459b99f602..331ff4f95b8 100644
--- a/public/app/features/templating/text_variable.ts
+++ b/public/app/features/templating/TextBoxVariable.ts
@@ -1,13 +1,13 @@
import { Variable, assignModelProperties, variableTypes } from './variable';
-export class TextVariable implements Variable {
+export class TextBoxVariable implements Variable {
query: string;
current: any;
options: any[];
skipUrlSync: boolean;
defaults = {
- type: 'text',
+ type: 'textbox',
name: '',
hide: 2,
label: '',
@@ -51,8 +51,8 @@ export class TextVariable implements Variable {
}
}
-variableTypes['text'] = {
- name: 'Text',
- ctor: TextVariable,
+variableTypes['textbox'] = {
+ name: 'Text box',
+ ctor: TextBoxVariable,
description: 'Define a textbox variable, where users can enter any arbitrary string',
};
diff --git a/public/app/features/templating/all.ts b/public/app/features/templating/all.ts
index 424494f66b2..b872fa6cd4a 100644
--- a/public/app/features/templating/all.ts
+++ b/public/app/features/templating/all.ts
@@ -9,7 +9,7 @@ import { DatasourceVariable } from './datasource_variable';
import { CustomVariable } from './custom_variable';
import { ConstantVariable } from './constant_variable';
import { AdhocVariable } from './adhoc_variable';
-import { TextVariable } from './text_variable';
+import { TextBoxVariable } from './TextBoxVariable';
coreModule.factory('templateSrv', () => {
return templateSrv;
@@ -23,5 +23,5 @@ export {
CustomVariable,
ConstantVariable,
AdhocVariable,
- TextVariable
+ TextBoxVariable,
};
diff --git a/public/app/features/templating/partials/editor.html b/public/app/features/templating/partials/editor.html
index ed8398738da..ac4450c20a2 100644
--- a/public/app/features/templating/partials/editor.html
+++ b/public/app/features/templating/partials/editor.html
@@ -155,10 +155,10 @@
-