This is an automated email from the ASF dual-hosted git repository.

cgivre pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git


The following commit(s) were added to refs/heads/master by this push:
     new d51d403be7 DRILL-8449: fix typo in width property in FreeMarker 
templates (#2818)
d51d403be7 is described below

commit d51d403be74fe577d797a4d7a3a461973ca572c9
Author: Maksym Rymar <rim.maxim+...@gmail.com>
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>

Reply via email to