Skip to content

Commit

Permalink
DRILL-8449: fix typo in width property in FreeMarker templates (#2818)
Browse files Browse the repository at this point in the history
  • Loading branch information
rymarm authored Aug 10, 2023
1 parent 4e3992b commit d51d403
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion exec/java-exec/src/main/resources/rest/options.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
</div>
<#include "*/alertModals.ftl">
<div class="table-responsive">
<table id='optionsTbl' class="table table-striped table-condensed display sortable" style="table-layout: auto; width=100%;">
<table id='optionsTbl' class="table table-striped table-condensed display sortable" style="table-layout: auto; width: 100%;">
<thead>
<tr>
<th style="width:30%">OPTION</th>
Expand Down
2 changes: 1 addition & 1 deletion exec/java-exec/src/main/resources/rest/query/result.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<p class="lead">No result found.</p>
</div>
<#else>
<table id="result" class="table table-striped table-bordered table-condensed" style="table-layout: auto; width=100%; white-space: pre;">
<table id="result" class="table table-striped table-bordered table-condensed" style="table-layout: auto; width: 100%; white-space: pre;">
<thead>
<tr>
<#list model.getColumns() as value>
Expand Down

0 comments on commit d51d403

Please sign in to comment.