Skip to content

Commit

Permalink
Add a filter input to advanced settings app, fix width of index creat…
Browse files Browse the repository at this point in the history
…ion container
  • Loading branch information
Rashid Khan committed May 31, 2014
1 parent f57b346 commit 2ff4891
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/kibana/apps/settings/partials/advanced.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ <h4>Caution: You can break stuff here</h4>
Some of these settings may be undocumented, unsupported or experimental. Blanking a field will cause Kibana to use its internal
defaults which may be unacceptable given other configuration directives.
</div>
<form>
<input ng-model="advancedFilter" class="form-control span12" type="text" placeholder="Filter"/>
</form>
<table class="table">
<thead>
<tr>
Expand All @@ -15,7 +18,7 @@ <h4>Caution: You can break stuff here</h4>
</tr>
</thead>
<tbody>
<tr ng-repeat="conf in configs" ng-class="!conf.value ? 'default' : 'custom'">
<tr ng-repeat="conf in configs | filter:advancedFilter" ng-class="!conf.value ? 'default' : 'custom'">
<td class="name">{{conf.name}}</td>
<td class="value">
<form
Expand Down
2 changes: 1 addition & 1 deletion src/kibana/apps/settings/partials/indices/create.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h1>Configure an index pattern</h1>
used to identify the Elasticsearch index to run search and analytics against. They are also
used to configure fields.
</div>
<div class="container">
<div>
<form name="form" role="form" class="well" ng-submit="createIndexPattern()">
<div class="form-group time-and-pattern">
<label>
Expand Down

0 comments on commit 2ff4891

Please sign in to comment.