Skip to content

Commit

Permalink
Remove unused title attribute from SavedObjectFinder.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcenizal committed May 4, 2017
1 parent 18f87c7 commit a4cbcb0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Expand Up @@ -19,7 +19,6 @@

<div class="list-group-item list-group-item--noBorder" ng-switch-when="visualization">
<saved-object-finder
title="Choose a visualization"
use-local-management="true"
type="visualizations"
on-add-new="opts.addNewVis"
Expand All @@ -28,6 +27,10 @@
</div>

<div class="list-group-item list-group-item--noBorder" ng-switch-when="search">
<saved-object-finder title="Choose a search" type="searches" use-local-management="true" on-choose="opts.addSearch"></saved-object-finder>
<saved-object-finder
type="searches"
use-local-management="true"
on-choose="opts.addSearch"
></saved-object-finder>
</div>
</div>
Expand Up @@ -34,7 +34,6 @@ <h2 class="kuiTitle kuiVerticalRhythm">

<!-- Saved searches -->
<saved-object-finder
title="Saved Searches"
type="searches"
class="wizard-row visualizeWizardSavedObjectFinder kuiVerticalRhythm"
make-url="step2WithSearchUrl"
Expand Down
1 change: 0 additions & 1 deletion src/ui/public/directives/saved_object_finder.js
Expand Up @@ -15,7 +15,6 @@ module.directive('savedObjectFinder', function ($location, $injector, kbnUrl, Pr
restrict: 'E',
scope: {
type: '@',
title: '@?',
// optional make-url attr, sets the userMakeUrl in our scope
userMakeUrl: '=?makeUrl',
// optional on-choose attr, sets the userOnChoose in our scope
Expand Down

0 comments on commit a4cbcb0

Please sign in to comment.