Skip to content

Commit

Permalink
Make field/operator columns wider in query builder
Browse files Browse the repository at this point in the history
They were too narrow to fit some default inputs like
"Requestor.EmailAddress" "doesn't match".
  • Loading branch information
sunnavy committed Dec 17, 2024
1 parent 18d0636 commit 6070c41
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions share/html/Search/Elements/ConditionRow
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@
%#
%# END BPS TAGGED BLOCK }}}
<div class="row mt-2 <% $Condition->{Class} || '' %>">
<div class="col-4 rt-search-field">
<div class="col-5 rt-search-field">
<% $handle_block->( $Condition->{'Field'}, $Condition->{'Name'} .'Field' ) |n %>
</div>
<div class="col-2 rt-search-operator">
<div class="col-3 rt-search-operator">
<% $handle_block->( $Condition->{'Op'}, $Condition->{'Name'} .'Op') |n %>
</div>
<div class="col-6 rt-search-value">
<div class="col-4 rt-search-value">
<% $handle_block->( $Condition->{'Value'}, 'ValueOf'. $Condition->{'Name'} ) |n %>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions share/html/Search/Elements/PickCriteria
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@
% }

<div class="row mt-2">
<div class="pt-1 col-4"><&|/l&>Aggregator</&></div>
<div class="col-8 operator"><& SelectAndOr, Name => "AndOr" &></div>
<div class="pt-1 col-5"><&|/l&>Aggregator</&></div>
<div class="col-7 operator"><& SelectAndOr, Name => "AndOr" &></div>
</div>

</&>
Expand Down

0 comments on commit 6070c41

Please sign in to comment.