Skip to content

Commit 7492e20

Browse files
ansonhorsePanJiaChen
authored andcommitted
fix[ErrorLog]: fixed error log dialog z-index bug (PanJiaChen#1844)
PanJiaChen#1830
1 parent 770753e commit 7492e20

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/ErrorLog/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</el-button>
77
</el-badge>
88

9-
<el-dialog :visible.sync="dialogTableVisible" title="Error Log" width="80%">
9+
<el-dialog :visible.sync="dialogTableVisible" title="Error Log" width="80%" append-to-body>
1010
<el-table :data="errorLogs" border>
1111
<el-table-column label="Message">
1212
<template slot-scope="{row}">

src/settings.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ export default {
2828
sidebarLogo: false,
2929

3030
/**
31-
* @type {string | array} 'production' | ['production','development']
31+
* @type {string | array} 'production' | ['production', 'development']
3232
* @description Need show err logs component.
3333
* The default is only used in the production env
34-
* If you want to also use it in dev, you can pass ['production','development']
34+
* If you want to also use it in dev, you can pass ['production', 'development']
3535
*/
3636
errorLog: 'production'
3737
}

0 commit comments

Comments
 (0)