-
Notifications
You must be signed in to change notification settings - Fork 303
fix(popeditor): fix popeditor can not set grid props #3431
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,6 +64,7 @@ | |
<tiny-grid | ||
ref="suggest" | ||
v-if="state.showSuggestPanel" | ||
v-bind="gridOp" | ||
auto-resize | ||
:loading="state.loading" | ||
max-height="300px" | ||
|
@@ -172,6 +173,7 @@ | |
<div v-if="state.activeName === 'history'" class="tabs-body-item"> | ||
<tiny-grid | ||
ref="historyGrid" | ||
v-bind="gridOp" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ensure that |
||
height="290px" | ||
size="mini" | ||
:highlight-current-row="true" | ||
|
@@ -187,6 +189,7 @@ | |
<div v-if="state.activeName === 'source'" class="tabs-body-item"> | ||
<tiny-grid | ||
v-if="multi" | ||
v-bind="gridOp" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ensure that |
||
auto-resize | ||
:loading="state.loading" | ||
ref="sourceGrid" | ||
|
@@ -204,6 +207,7 @@ | |
<tiny-grid | ||
v-else | ||
ref="sourceGrid" | ||
v-bind="gridOp" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ensure that |
||
auto-resize | ||
:loading="state.loading" | ||
height="290px" | ||
|
@@ -268,6 +272,7 @@ | |
<tiny-grid | ||
v-else | ||
ref="selectedGrid" | ||
v-bind="gridOp" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ensure that |
||
auto-resize | ||
:columns="state.baseColumns" | ||
:data="state.selectedDatas" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ensure that
gridOp
is correctly defined and contains all necessary properties for thetiny-grid
components. Missing or undefined properties could lead to runtime errors.