mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-09 20:22:54 +00:00
fix graph (#55)
This commit is contained in:
parent
f19bcc856d
commit
8d87777832
@ -13,7 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License. -->
|
||||
<template>
|
||||
<div ref="chartRef" :style="`height:${height};width:${width};`">
|
||||
<div class="chart" ref="chartRef" :style="`height:${height};width:${width};`">
|
||||
<div v-if="!available" class="no-data">No Data</div>
|
||||
</div>
|
||||
</template>
|
||||
@ -98,4 +98,8 @@ onBeforeUnmount(() => {
|
||||
-webkit-box-align: center;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.chart {
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
|
@ -149,6 +149,11 @@ const depth = ref<number>(graphConfig.value.depth || 2);
|
||||
|
||||
onMounted(async () => {
|
||||
loading.value = true;
|
||||
const json = await selectorStore.fetchServices(dashboardStore.layerId);
|
||||
if (json.errors) {
|
||||
ElMessage.error(json.errors);
|
||||
return;
|
||||
}
|
||||
const resp = await getTopology();
|
||||
loading.value = false;
|
||||
if (resp && resp.errors) {
|
||||
|
Loading…
Reference in New Issue
Block a user