Skip to content

Commit

Permalink
Fix missing features alert
Browse files Browse the repository at this point in the history
  • Loading branch information
akhuoa committed Jul 26, 2024
1 parent 1c55ba9 commit 0c88e2a
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/components/ConnectivityInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</el-popover>
</div>
</div>
<div v-if="featuresAlert" class="attribute-title-container">
<div v-if="entry.featuresAlert" class="attribute-title-container">
<span class="attribute-title">Alert</span>
<el-popover
width="250"
Expand All @@ -52,7 +52,7 @@
<el-icon class="info"><el-icon-warning /></el-icon>
</template>
<span style="word-break: keep-all">
{{ featuresAlert }}
{{ entry.featuresAlert }}
</span>
</el-popover>
</div>
Expand Down Expand Up @@ -225,14 +225,14 @@ export default {
originsWithDatasets: [],
componentsWithDatasets: [],
resource: undefined,
featuresAlert: undefined,
}),
},
availableAnatomyFacets: {
type: Array,
default: () => [],
},
},
// inject: ['getFeaturesAlert'],
data: function () {
return {
controller: undefined,
Expand Down Expand Up @@ -267,9 +267,6 @@ export default {
}
return resources;
},
featuresAlert() {
// return this.getFeaturesAlert()
},
originDescription: function () {
if (
this.entry &&
Expand Down

0 comments on commit 0c88e2a

Please sign in to comment.