Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions frontend/src/views/ai/mcp/server/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<CopyButton :content="row.baseUrl + row.ssePath" type="icon" />
</template>
</el-table-column>
<el-table-column :label="$t('commons.table.status')" prop="status" width="100px">
<el-table-column :label="$t('commons.table.status')" prop="status" width="120px">
<template #default="{ row }">
<el-popover
v-if="row.status === 'error'"
Expand All @@ -52,7 +52,7 @@
</div>
</template>
</el-table-column>
<el-table-column :label="$t('commons.button.log')" prop="path" width="100px">
<el-table-column :label="$t('commons.button.log')" prop="path" width="120px">
<template #default="{ row }">
<el-button
@click="openLog(row)"
Expand All @@ -73,8 +73,8 @@
fix
/>
<fu-table-operations
:ellipsis="mobile ? 0 : 10"
:min-width="mobile ? 'auto' : 300"
:ellipsis="mobile ? 0 : 2"
:min-width="mobile ? 'auto' : 200"
:buttons="buttons"
:label="$t('commons.table.operate')"
fixed="right"
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is just one small change in line 52: The width property from "100px" to "120px". This does not affect functionality but makes the column larger.

Expand Down
Loading