Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shraddha404 committed Mar 11, 2024
1 parent 711897a commit df0c482
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Traits/Search.php
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ private function datatableFormatResults($data){
}

if(env('ENABLE_INFO_PAGE') == 1){
$action_icons .= '<a class="btn btn-primary btn-link" title="Information and more" href="/collection/'.$d->collection_id.'/document/'.$d->id.'/details"><i class="material-icons">info</i></a>';
$action_icons .= '<a class="btn btn-primary btn-link" title="Information and more" href="/collection/'.$d->collection_id.'/document/'.$d->id.'/details"><i class="material-icons">forward</i></a>';
}
if($content_type == 'Uploaded documents'){
if(Auth::user()){
Expand Down
2 changes: 1 addition & 1 deletion resources/views/collection-settings.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
<select class="form-control1" name="replace_title_with_meta">
<option value="">Don't replace with any meta value</option>
@foreach ($collection->meta_fields as $m)
<option value="{{ $m->id }}" @if ($column_config->replace_title_with_meta == $m->id) {{ 'selected' }} @endif >{{ $m->label }}</option>
<option value="{{ $m->id }}" @if (@$column_config->replace_title_with_meta == $m->id) {{ 'selected' }} @endif >{{ $m->label }}</option>
@endforeach
</select>
</div>
Expand Down

0 comments on commit df0c482

Please sign in to comment.