Merge branch 'dev' into v1.18
This commit is contained in:
commit
eabe0a7491
@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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>
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user