Skip to content

Commit

Permalink
fix some missing getter in profile
Browse files Browse the repository at this point in the history
  • Loading branch information
trieu committed Sep 28, 2024
1 parent 63abc34 commit 3d8d63f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
Binary file modified leo-data-processing-starter-v_0.9.0.jar
Binary file not shown.
Binary file modified leo-main-starter-v_0.9.0.jar
Binary file not shown.
Binary file modified leo-observer-starter-v_0.9.0.jar
Binary file not shown.
Binary file modified leo-scheduler-starter-v_0.9.0.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
#profile_info_tabs {
margin-top: 15px;
}

.funnel-flow {
text-transform: uppercase;
font-size: 12px!important;
Expand Down Expand Up @@ -85,7 +84,6 @@
border-color: #BBBBBB;
margin-top: 5px;
}

</style>

<script id='engaged-touchpoint-tpl' type="text/html" >
Expand Down Expand Up @@ -130,7 +128,7 @@ <h5 class="media-heading"> <a target="_blank" rel="noreferrer" href="<%- srcTouc
<span class="small" > <b><i class="fa fa-info-circle" aria-hidden="true"></i> Event Data:</b> <br>
<ul>
<% _.forOwn(eventData, function(value, key) { %>
<li> <%- key %> : <%- (value) %> </li>
<li><%- key %> : <%- (value) %></li>
<% }) %>
<ul>
</span>
Expand Down Expand Up @@ -172,7 +170,7 @@ <h5 class="media-heading"> <a target="_blank" rel="noreferrer" href="<%- srcTouc
<span class="small" > <b><i class="fa fa-info-circle" aria-hidden="true"></i> Event Data:</b> <br>
<ul>
<% _.forOwn(eventData, function(value, key) { %>
<li> <b> <%- key %> </b> : <mark> <%- decodeURISafe(value) %> </mark> </li>
<li> <b><%- key %></b> : <mark><%- decodeURISafe(value) %></mark> </li>
<% }) %>
<ul>
</span>
Expand Down Expand Up @@ -225,7 +223,7 @@ <h5 class="media-heading"> <a target="_blank" rel="noreferrer" href="<%- srcTouc
<span class="small" > <b> <i class="fa fa-info-circle" aria-hidden="true"></i> Event Data: </b> </span>
<ul>
<% _.forOwn(eventData, function(value, key) { %>
<li> <b> <%- key %> </b> : <mark> <%- decodeURISafe(value) %> </mark> </li>
<li> <b><%- key %></b> : <mark><%- decodeURISafe(value) %></mark> </li>
<% }) %>
<ul>
</div>
Expand Down Expand Up @@ -303,7 +301,7 @@ <h5 class="media-heading"> <a target="_blank" rel="noreferrer" href="<%- srcTouc
<span class="small" > <b> <i class="fa fa-info-circle" aria-hidden="true"></i> Event Data: </b> </span>
<ul class="small" >
<% _.forOwn(eventData, function(value, key) { %>
<li> <b> <%- key %> </b> : <mark> <%- decodeURISafe(value) %> </mark> </li>
<li> <b><%- key %></b> : <mark><%- decodeURISafe(value) %></mark> </li>
<% }) %>
<ul>
<br>
Expand Down

0 comments on commit 3d8d63f

Please sign in to comment.