Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed May 12, 2020
1 parent 0c3e09f commit e15473c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Modules/Tiles.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public function searchModules(Request $request)
]
];

$title = trans('modules.search');
$title = trans('general.search');
$modules = $this->getSearchModules($data);
$installed = Module::all()->pluck('enabled', 'alias')->toArray();

Expand Down
1 change: 0 additions & 1 deletion resources/lang/en-GB/modules.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
'new' => 'New',
'top_free' => 'Top Free',
'free' => 'FREE',
'search' => 'Search',
'install' => 'Install',
'buy_now' => 'Buy Now',
'get_api_key' => '<a href=":url" target="_blank">Click here</a> to get your API key.',
Expand Down
2 changes: 1 addition & 1 deletion resources/views/partials/modules/bar.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class="form-control-sm d-inline-block w-auto"
</div>
<div class="col-xs-12 col-sm-3 text-right">
{!! Form::open(['route' => 'apps.search', 'role' => 'form', 'method' => 'GET', 'class' => 'm-0']) !!}
<input name="keyword" value="{{ isset($keyword) ? $keyword : '' }}" type="text" class="form-control form-control-sm d-inline-block w-auto" placeholder="Search Apps">
<input name="keyword" value="{{ isset($keyword) ? $keyword : '' }}" type="text" class="form-control form-control-sm d-inline-block w-auto" placeholder="{{ trans('general.search_placeholder') }}">
<span class="glyphicon glyphicon-search form-control-feedback"></span>
{!! Form::close() !!}
</div>
Expand Down

0 comments on commit e15473c

Please sign in to comment.