update dialog

This commit is contained in:
Fine 2025-03-10 15:45:05 +08:00
parent f74074d737
commit b5035bbfd7
2 changed files with 8 additions and 3 deletions

View File

@ -15,7 +15,7 @@ limitations under the License. -->
<Icon iconName="spinner" size="sm" />
</div>
<div ref="traceGraph" class="d3-graph"></div>
<el-dialog v-model="showDetail" :destroy-on-close="true" fullscreen @closed="showDetail = false">
<el-dialog v-model="showDetail" :destroy-on-close="true" @closed="showDetail = false">
<SpanDetail :currentSpan="currentSpan" />
</el-dialog>
</template>

View File

@ -87,7 +87,7 @@ limitations under the License. -->
{{ t("relatedTraceLogs") }}
</el-button>
</div>
<el-dialog v-model="showEventDetail" :destroy-on-close="true" fullscreen @closed="showEventDetail = false">
<el-dialog v-model="showEventDetail" :destroy-on-close="true" @closed="showEventDetail = false">
<div>
<div class="mb-10">
<span class="grey title">Name:</span>
@ -115,7 +115,7 @@ limitations under the License. -->
</div>
</div>
</el-dialog>
<el-dialog v-model="showRelatedLogs" :destroy-on-close="true" fullscreen @closed="showRelatedLogs = false">
<el-dialog v-model="showRelatedLogs" :destroy-on-close="true" @closed="showRelatedLogs = false">
<el-pagination
v-model="pageNum"
:page-size="pageSize"
@ -295,4 +295,9 @@ limitations under the License. -->
.link {
text-decoration: underline;
}
.log-tips {
text-align: center;
padding: 30px;
}
</style>