Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions frontend/src/views/app-store/installed/detail/index.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<DrawerPro v-model="open" :header="$t('app.param')" @close="handleClose" size="normal">
<template #buttons>
<el-button type="primary" plain @click="editParam" :disabled="loading">
<el-button type="primary" plain @click="editParam" :disabled="loading" :icon="edit ? '' : 'Edit'">
{{ edit ? $t('app.detail') : $t('commons.button.edit') }}
</el-button>
</template>
Expand All @@ -11,7 +11,7 @@
<span v-if="!openConfig">
{{ appConfigUpdate.webUI }}
<el-button size="small" @click="openConfig = true">
{{ $t('commons.button.edit') }}
{{ $t('container.custom') }}
</el-button>
</span>
<span class="flex" v-else>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/host/process/network/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
collapse-tags-tooltip
:max-collapse-tags="2"
@change="search()"
class="p-w-400"
class="p-w-300"
>
<el-option
v-for="item in statusOptions"
Expand Down
7 changes: 4 additions & 3 deletions frontend/src/views/host/process/process/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
:placeholder="$t('commons.table.status')"
clearable
@change="search()"
class="p-w-400"
class="p-w-300"
multiple
collapse-tags
collapse-tags-tooltip
Expand Down Expand Up @@ -114,6 +114,8 @@ const columns = ref([
title: 'PID',
dataKey: 'PID',
width: 120,
sortable: true,
sortMethod: sortByNum,
},
{
key: 'name',
Expand All @@ -126,7 +128,6 @@ const columns = ref([
title: i18n.global.t('process.ppid'),
dataKey: 'PPID',
width: 120,
sortable: true,
},
{
key: 'numThreads',
Expand Down Expand Up @@ -190,7 +191,7 @@ const columns = ref([
key: 'actions',
title: i18n.global.t('commons.table.operate'),
dataKey: 'actions',
width: 200,
width: 300,
cellRenderer: ({ rowData }) => {
return h('div', { class: 'action-buttons' }, [
h(
Expand Down
Loading