Skip to content

Commit

Permalink
fix: resolve issue with code input can not displaying fullscreen in m…
Browse files Browse the repository at this point in the history
…odal component (#6787)

#### What type of PR is this?

/area ui
/kind bug
/milestone 2.20.x

#### What this PR does / why we need it:

修复 Code 输入框在模态框(VModal)组件中无法正常全屏显示的问题。

#### Which issue(s) this PR fixes:

Fixes #6682

#### Does this PR introduce a user-facing change?

```release-note
修复 Code 输入框在模态框(VModal)组件中无法正常全屏显示的问题。
```
  • Loading branch information
ruibaby authored Oct 8, 2024
1 parent f632322 commit 1d31d32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/packages/components/src/components/modal/Modal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ watch(
<div
v-show="internalVisible"
:style="contentStyles"
class="modal-content transform transition-all duration-300"
class="modal-content transition-all duration-300"
:class="{ 'modal-focus': focus }"
>
<div v-if="$slots.header || title" class="modal-header group">
Expand Down

0 comments on commit 1d31d32

Please sign in to comment.