We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8145017 commit a19debfCopy full SHA for a19debf
2 files changed
client/src/components/Sunburst.vue
@@ -130,6 +130,7 @@ export default {
130
});
131
132
this.debouncedUpdate = debounce(this.update.bind(this), 500);
133
+ this.update(this.sunburstData);
134
135
this.chart(this.$el);
136
client/src/views/Home.vue
@@ -216,7 +216,7 @@ export default {
216
<h4>Sunburst</h4>
217
</v-card-title>
218
<v-card-text class="white-card-text">
219
- <Sunburst :filteredTables="filteredTables" :cmap="cmap" />
+ <Sunburst v-if="selectedSamples.length" :filteredTables="filteredTables" :cmap="cmap" />
220
</v-card-text>
221
</v-card>
222
</v-flex>
0 commit comments