mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-15 01:33:54 +00:00
render rows in respect to computed columns
This commit is contained in:
parent
5e9e52f831
commit
650038f069
@ -17,7 +17,8 @@ limitations under the License. -->
|
|||||||
<div class="log">
|
<div class="log">
|
||||||
<div class="log-header">
|
<div class="log-header">
|
||||||
<template v-for="(item, index) in columns">
|
<template v-for="(item, index) in columns">
|
||||||
<div
|
<template v-if="item.isVisible">
|
||||||
|
<div
|
||||||
class="method"
|
class="method"
|
||||||
:style="`width: ${item.method}px`"
|
:style="`width: ${item.method}px`"
|
||||||
v-if="item.drag"
|
v-if="item.drag"
|
||||||
@ -31,6 +32,7 @@ limitations under the License. -->
|
|||||||
<div v-else :class="item.label" :key="`col${index}`">
|
<div v-else :class="item.label" :key="`col${index}`">
|
||||||
{{ t(item.value) }}
|
{{ t(item.value) }}
|
||||||
</div>
|
</div>
|
||||||
|
</template>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="type === 'browser'">
|
<div v-if="type === 'browser'">
|
||||||
|
Loading…
Reference in New Issue
Block a user