three-trees-ui 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/three-trees-ui.common.js +36 -36
- package/lib/three-trees-ui.css +1 -1
- package/lib/three-trees-ui.umd.js +36 -36
- package/lib/three-trees-ui.umd.min.js +1 -1
- package/package.json +1 -1
- package/packages/OrgSelectorInput/src/OrgSelectorInput.vue +1 -1
- package/packages/Subtable/src/SubDialog.vue +5 -1
package/package.json
CHANGED
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
class="org-table"
|
|
159
159
|
size="medium"
|
|
160
160
|
style="width: 100%"
|
|
161
|
-
max-height="
|
|
161
|
+
max-height="500px"
|
|
162
162
|
@row-click="orgRowClick"
|
|
163
163
|
@selection-change="orgTableSelection"
|
|
164
164
|
@select="onTableSelect"
|
|
@@ -2077,6 +2077,7 @@
|
|
|
2077
2077
|
::v-deep .el-dialog__body {
|
|
2078
2078
|
padding: 0;
|
|
2079
2079
|
overflow-y: auto;
|
|
2080
|
+
max-height: 650px;
|
|
2080
2081
|
}
|
|
2081
2082
|
|
|
2082
2083
|
::v-deep .el-card__header {
|
|
@@ -2133,6 +2134,9 @@
|
|
|
2133
2134
|
::v-deep .el-dialog__body .el-container {
|
|
2134
2135
|
height: 100% !important;
|
|
2135
2136
|
}
|
|
2137
|
+
::v-deep .el-dialog__body {
|
|
2138
|
+
max-height: 500px;
|
|
2139
|
+
}
|
|
2136
2140
|
}
|
|
2137
2141
|
::v-deep .el-divider--vertical {
|
|
2138
2142
|
height: 100%;
|