Commit 05cb6048 by minki

fixed separate typo

parent 8db00073
...@@ -143,7 +143,7 @@ cookie_remember_name = grafana_remember ...@@ -143,7 +143,7 @@ cookie_remember_name = grafana_remember
# disable gravatar profile images # disable gravatar profile images
disable_gravatar = false disable_gravatar = false
# data source proxy whitelist (ip_or_domain:port seperated by spaces) # data source proxy whitelist (ip_or_domain:port separated by spaces)
data_source_proxy_whitelist = data_source_proxy_whitelist =
[snapshots] [snapshots]
......
...@@ -129,7 +129,7 @@ check_for_updates = true ...@@ -129,7 +129,7 @@ check_for_updates = true
# disable gravatar profile images # disable gravatar profile images
;disable_gravatar = false ;disable_gravatar = false
# data source proxy whitelist (ip_or_domain:port seperated by spaces) # data source proxy whitelist (ip_or_domain:port separated by spaces)
;data_source_proxy_whitelist = ;data_source_proxy_whitelist =
[snapshots] [snapshots]
......
...@@ -147,7 +147,7 @@ ...@@ -147,7 +147,7 @@
<div ng-show="current.type === 'custom'" class="gf-form-group"> <div ng-show="current.type === 'custom'" class="gf-form-group">
<h5 class="section-heading">Custom Options</h5> <h5 class="section-heading">Custom Options</h5>
<div class="gf-form"> <div class="gf-form">
<span class="gf-form-label width-13">Values seperated by comma</span> <span class="gf-form-label width-13">Values separated by comma</span>
<input type="text" class="gf-form-input" ng-model='current.query' ng-blur="runQuery()" placeholder="1, 10, 20, myvalue"></input> <input type="text" class="gf-form-input" ng-model='current.query' ng-blur="runQuery()" placeholder="1, 10, 20, myvalue"></input>
</div> </div>
</div> </div>
......
...@@ -173,7 +173,7 @@ function (angular, _, kbn) { ...@@ -173,7 +173,7 @@ function (angular, _, kbn) {
return; return;
} }
// extract options in comma seperated string // extract options in comma separated string
variable.options = _.map(variable.query.split(/[,]+/), function(text) { variable.options = _.map(variable.query.split(/[,]+/), function(text) {
return { text: text.trim(), value: text.trim() }; return { text: text.trim(), value: text.trim() };
}); });
......
...@@ -119,7 +119,7 @@ ...@@ -119,7 +119,7 @@
></select> ></select>
</li> </li>
<li class="tight-form-item"> <li class="tight-form-item">
Thresholds<tip>Comma seperated values</tip> Thresholds<tip>Comma separated values</tip>
</li> </li>
<li> <li>
<input type="text" class="input-small tight-form-input" style="width: 150px" ng-model="style.thresholds" ng-blur="editor.render()" placeholder="50,80" array-join></input> <input type="text" class="input-small tight-form-input" style="width: 150px" ng-model="style.thresholds" ng-blur="editor.render()" placeholder="50,80" array-join></input>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment