Skip to content

Commit

Permalink
fix: 🐛 Repair the problem of equipment width in the English state
Browse files Browse the repository at this point in the history
  • Loading branch information
viarotel committed Jul 13, 2024
1 parent 8097022 commit 25c42d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Device/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@
sortable
show-overflow-tooltip
align="left"
width="200"
min-width="100"
/>
<el-table-column
:label="$t('device.name')"
sortable
show-overflow-tooltip
align="left"
min-width="200"
min-width="150"
>
<template #default="{ row }">
<div class="flex items-center">
Expand Down Expand Up @@ -97,7 +97,7 @@
<el-table-column
v-slot="{ row, $index }"
:label="$t('device.control.name')"
width="400"
min-width="200"
align="left"
>
<MirrorAction
Expand Down

0 comments on commit 25c42d9

Please sign in to comment.