This is an automated email from the ASF dual-hosted git repository. dzamo pushed a commit to branch 1.21 in repository https://gitbox.apache.org/repos/asf/drill.git
commit 7162b9a07cce0a393326ebc575266b2c49f8d008 Author: Maksym Rymar <[email protected]> AuthorDate: Thu Aug 10 18:10:28 2023 +0300 DRILL-8449: fix typo in width property in FreeMarker templates (#2818) --- exec/java-exec/src/main/resources/rest/options.ftl | 2 +- exec/java-exec/src/main/resources/rest/query/result.ftl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exec/java-exec/src/main/resources/rest/options.ftl b/exec/java-exec/src/main/resources/rest/options.ftl index 6c24fd13aa..b18d871262 100644 --- a/exec/java-exec/src/main/resources/rest/options.ftl +++ b/exec/java-exec/src/main/resources/rest/options.ftl @@ -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> diff --git a/exec/java-exec/src/main/resources/rest/query/result.ftl b/exec/java-exec/src/main/resources/rest/query/result.ftl index 74262cfe79..b74ae667ca 100644 --- a/exec/java-exec/src/main/resources/rest/query/result.ftl +++ b/exec/java-exec/src/main/resources/rest/query/result.ftl @@ -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>
