forked from github/dataease
commit
a4c7527a99
@ -58,7 +58,7 @@ public class DataSetTableTaskService {
|
||||
public DatasetTableTask save(DataSetTaskRequest dataSetTaskRequest) throws Exception {
|
||||
checkName(dataSetTaskRequest);
|
||||
DatasetTableTask datasetTableTask = dataSetTaskRequest.getDatasetTableTask();
|
||||
if(!datasetTableTask.getType().equalsIgnoreCase("add_scope")){
|
||||
if(datasetTableTask.getType().equalsIgnoreCase("add_scope")){
|
||||
dataSetTableService.saveIncrementalConfig(dataSetTaskRequest.getDatasetTableIncrementalConfig());
|
||||
}
|
||||
// check
|
||||
|
@ -583,7 +583,7 @@ public class ExtractDataService {
|
||||
if (jobStatus.getStatusDescription().equals("Finished")) {
|
||||
return;
|
||||
} else {
|
||||
DataEaseException.throwException((jobStatus.getErrorDescription()));
|
||||
DataEaseException.throwException((jobStatus.getLoggingString()));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -36,7 +36,7 @@
|
||||
width="50%"
|
||||
class="dialog-css"
|
||||
>
|
||||
<span>{{ error_massage }}</span>
|
||||
<span class="err-msg">{{ error_massage }}</span>
|
||||
<span slot="footer" class="dialog-footer">
|
||||
<el-button size="mini" @click="show_error_massage = false">{{ $t('dataset.close') }}</el-button>
|
||||
</span>
|
||||
@ -176,6 +176,16 @@ export default {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.err-msg{
|
||||
font-size: 12px;
|
||||
word-break:normal;
|
||||
width:auto;
|
||||
display:block;
|
||||
white-space:pre-wrap;
|
||||
word-wrap : break-word ;
|
||||
overflow: hidden ;
|
||||
}
|
||||
|
||||
span{
|
||||
font-size: 12px;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user