Merge branch 'dev' into v1.18

This commit is contained in:
taojinlong 2023-07-24 11:57:06 +08:00
commit eabe0a7491
2 changed files with 15 additions and 1 deletions

View File

@ -3122,9 +3122,15 @@ public class NoModelDataListener extends AnalysisEventListener<Map<Integer, Stri
for (Integer key : dataMap.keySet()) { for (Integer key : dataMap.keySet()) {
String value = dataMap.get(key); String value = dataMap.get(key);
if (StringUtils.isEmpty(value)) { if (StringUtils.isEmpty(value)) {
value = "none"; value = "";
} }
line.add(value); line.add(value);
};
int size = line.size();
if(size < header.size()){
for (int i = 0; i < header.size() - size; i++) {
line.add("");
}
} }
data.add(line); data.add(line);
} }

View File

@ -249,6 +249,7 @@
<Preview <Preview
v-if="showMainFlag" v-if="showMainFlag"
ref="paneViewPreviewRef" ref="paneViewPreviewRef"
:class="fullscreen && 'fullscreen-visual-selects'"
:component-data="mainCanvasComponentData" :component-data="mainCanvasComponentData"
:canvas-style-data="canvasStyleData" :canvas-style-data="canvasStyleData"
:active-tab="activeTab" :active-tab="activeTab"
@ -923,5 +924,12 @@ export default {
color: inherit; color: inherit;
margin-right: 5px; margin-right: 5px;
} }
.fullscreen-visual-selects {
.VisualSelects {
top: inherit !important;
left: inherit !important;
}
}
</style> </style>