Skip to content

Commit

Permalink
Fix displaying multi tokens in same position
Browse files Browse the repository at this point in the history
Closes #32
  • Loading branch information
johtani committed Sep 7, 2018
1 parent b5746fc commit 32c3550
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions public/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,7 @@ <h2 class="euiTitle euiTitle--medium">Perform analyze via _analyze API</h2>
advanced-row="conf"
configs="configs"
ng-show="show_result"
style="vertical-align: top"
>
<!-- Type/Name -->
<td class="euiTableRowCell">
Expand All @@ -463,7 +464,7 @@ <h2 class="euiTitle euiTitle--medium">Perform analyze via _analyze API</h2>
ng-if="detail.analyzer.tokens || detail.tokenizer.tokens"
ng-repeat="n in tokenIndicesArray"
>
<div class="euiTableCellContent customCellClass" style="overflow: hidden;white-space: nowrap;"
<div class="euiTableCellContent customCellClass" style="overflow: hidden;white-space: nowrap;display: grid;"
ng-if="controller.getTokenFromTokenstream(n, detail.tokenizer, detail.analyzer)"
>
<table
Expand Down Expand Up @@ -514,8 +515,9 @@ <h2 class="euiTitle euiTitle--medium">Perform analyze via _analyze API</h2>
class="euiTableRowCell"
ng-if="filter.tokens"
ng-repeat="n in tokenIndicesArray"
style="vertical-align: top"
>
<div class="euiTableCellContent customCellClass" style="overflow: hidden;white-space: nowrap;"
<div class="euiTableCellContent customCellClass" style="overflow: hidden;white-space: nowrap;display: grid;"
ng-if="controller.getTokenFromTokenstream(n, filter)"
>
<table
Expand Down Expand Up @@ -613,8 +615,9 @@ <h2 class="euiTitle euiTitle--medium">Perform analyze via _analyze API</h2>
class="euiTableRowCell"
ng-if="analyzerResult.tokens"
ng-repeat="n in tokenIndicesArray"
style="vertical-align: top"
>
<div class="euiTableCellContent customCellClass" style="overflow: hidden;white-space: nowrap;"
<div class="euiTableCellContent customCellClass" style="overflow: hidden;white-space: nowrap;display: grid;"
ng-if="controller.getTokenFromTokenstream(n, analyzerResult)"
>
<table
Expand Down

0 comments on commit 32c3550

Please sign in to comment.