Skip to content

Commit

Permalink
fix: 显示异常(Closes #437) (#451)
Browse files Browse the repository at this point in the history
Co-authored-by: Kerwin <[email protected]>
  • Loading branch information
Kerwin1202 and Kerwin authored Mar 3, 2024
1 parent d2bd9d0 commit 599db8d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"type": "node",
"request": "launch",
"name": "Launch Service Server",
"runtimeExecutable": "${workspaceFolder}/service/node_modules/.bin/esno",
"runtimeExecutable": "${workspaceFolder}/service/node_modules/.bin/tsx",
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}/service/src/index.ts",
"outFiles": ["${workspaceFolder}/service/**/*.js"],
Expand Down
1 change: 1 addition & 0 deletions src/components/common/Setting/Keys.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ const columns = [
title: 'Action',
key: '_id',
width: 220,
fixed: 'right',
render(row: KeyConfig) {
const actions: any[] = []
actions.push(h(
Expand Down
5 changes: 3 additions & 2 deletions src/components/common/Setting/User.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const columns = [
title: 'limit switch',
key: 'limit_switch',
resizable: true,
width: 80,
width: 100,
minWidth: 30,
maxWidth: 100,
render(row: any) {
Expand All @@ -117,6 +117,7 @@ const columns = [
title: 'Action',
key: '_id',
width: 220,
fixed: 'right',
render(row: any) {
const actions: any[] = []
actions.push(h(
Expand Down Expand Up @@ -290,7 +291,7 @@ onMounted(async () => {
:pagination="pagination"
:max-height="444"
striped
:scroll-x="1260"
:scroll-x="1800"
@update:page="handleGetUsers"
/>
</NSpace>
Expand Down

0 comments on commit 599db8d

Please sign in to comment.