mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-14 00:37:33 +00:00
update list props
This commit is contained in:
parent
0683789fbb
commit
0fd387648c
@ -31,7 +31,7 @@ limitations under the License. -->
|
||||
</div>
|
||||
<div class="list">
|
||||
<el-table v-loading="chartLoading" :data="endpoints" style="width: 100%">
|
||||
<el-table-column label="Endpoints">
|
||||
<el-table-column label="Endpoints" fixed min-width="220">
|
||||
<template #default="scope">
|
||||
<span
|
||||
class="link"
|
||||
|
@ -30,7 +30,7 @@ limitations under the License. -->
|
||||
</div>
|
||||
<div class="list">
|
||||
<el-table v-loading="chartLoading" :data="instances" style="width: 100%">
|
||||
<el-table-column label="Service Instances">
|
||||
<el-table-column label="Service Instances" fixed min-width="320">
|
||||
<template #default="scope">
|
||||
<span
|
||||
class="link"
|
||||
@ -52,7 +52,7 @@ limitations under the License. -->
|
||||
}"
|
||||
v-if="colMetrics.length"
|
||||
/>
|
||||
<el-table-column label="Attributes">
|
||||
<el-table-column label="Attributes" fixed="right" min-width="100">
|
||||
<template #default="scope">
|
||||
<el-popover placement="left" :width="400" trigger="click">
|
||||
<template #reference>
|
||||
|
@ -37,12 +37,17 @@ limitations under the License. -->
|
||||
:border="true"
|
||||
:style="{ fontSize: '14px' }"
|
||||
>
|
||||
<el-table-column label="Service Groups" v-if="config.showGroup">
|
||||
<el-table-column
|
||||
fixed
|
||||
label="Service Groups"
|
||||
v-if="config.showGroup"
|
||||
min-width="150"
|
||||
>
|
||||
<template #default="scope">
|
||||
{{ scope.row.group }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="Service Names">
|
||||
<el-table-column fixed label="Service Names" min-width="220">
|
||||
<template #default="scope">
|
||||
<span
|
||||
class="link"
|
||||
|
@ -20,6 +20,7 @@ limitations under the License. -->
|
||||
getLabel(metric, index)
|
||||
)} ${decodeURIComponent(getUnit(index))}`"
|
||||
:key="metric + index"
|
||||
min-width="150"
|
||||
>
|
||||
<template #default="scope">
|
||||
<div class="chart">
|
||||
|
Loading…
Reference in New Issue
Block a user