Skip to content

Commit

Permalink
Merge branch 'v5' into 'master'
Browse files Browse the repository at this point in the history
v5

See merge request mistio/mist-insights!17
  • Loading branch information
d-mo committed Apr 11, 2022
2 parents f2bbc38 + 72bfda8 commit e4126cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mist-insights.js
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ Polymer({
<paper-dropdown-menu id="filterbyNameDd" no-label-float="" noink="">
<paper-listbox id="filterbyName" slot="dropdown-content" class="dropdown-content" attr-for-selected="value" selected="{{filterby.id}}">
<template is="dom-repeat" items="{{filterbyItems}}">
<paper-item value="[[item.id]]" data-name\$="[[item.name]][[item.title]]">[[item.name]][[item.title]]</paper-item>
<paper-item value="[[item.id]]" data-name\$="[[item.name]]">[[item.name]]</paper-item>
</template>
<paper-item disabled="" hidden\$="[[!filterbyDisable]]">
<span hidden\$="[[!filterby.type]]">no [[_display(filterby.type)]]s</span>
Expand Down Expand Up @@ -1875,7 +1875,7 @@ Polymer({
return id;
} else if (this.filterby.type == 'cloud') {
if (!this.token)
return this.model.clouds[id].title;
return this.model.clouds[id].name;
else
return this.clouds && this.clouds.find(function(c) {
return c.id == id;
Expand Down

0 comments on commit e4126cf

Please sign in to comment.