diff --git a/menas/ui/components/dataset/conformanceRule/upsert.fragment.xml b/menas/ui/components/dataset/conformanceRule/upsert.fragment.xml index 91dc3aaf7..d9e98cb6a 100644 --- a/menas/ui/components/dataset/conformanceRule/upsert.fragment.xml +++ b/menas/ui/components/dataset/conformanceRule/upsert.fragment.xml @@ -15,7 +15,7 @@ + draggable="true" beforeOpen="onBeforeOpen" afterOpen="onAfterOpen" contentWidth="950px"> diff --git a/menas/ui/components/dataset/datasetDetail.controller.js b/menas/ui/components/dataset/datasetDetail.controller.js index 1bab0aabe..0bda1862d 100644 --- a/menas/ui/components/dataset/datasetDetail.controller.js +++ b/menas/ui/components/dataset/datasetDetail.controller.js @@ -400,11 +400,6 @@ sap.ui.define([ let sFragmentName = "components.dataset.conformanceRule." + oContext.getProperty("_t") + ".display"; if (oContext.getProperty("_t") === "MappingConformanceRule") { - - // todo remove debug print - let conf = this._model.getProperty("/currentDataset/conformance") - console.log(`conformance: ${JSON.stringify(conf)}`); - let oAttributeMappings = oContext.getProperty("attributeMappings"); let aJoinConditions = []; for (let key in oAttributeMappings) { @@ -454,7 +449,7 @@ sap.ui.define([ return { menasRef: e.menasRef }; - }) + }); aAuditEntries.unshift({ menasRef: { name: oCurrentDataset.name, diff --git a/menas/ui/components/mappingTable/addDefaultValue.fragment.xml b/menas/ui/components/mappingTable/addDefaultValue.fragment.xml index 2687cdb16..04b6e70fc 100644 --- a/menas/ui/components/mappingTable/addDefaultValue.fragment.xml +++ b/menas/ui/components/mappingTable/addDefaultValue.fragment.xml @@ -15,7 +15,7 @@ - + diff --git a/menas/ui/components/mappingTable/addMappingTable.fragment.xml b/menas/ui/components/mappingTable/addMappingTable.fragment.xml index 1180f577f..8aa7e5ea5 100644 --- a/menas/ui/components/mappingTable/addMappingTable.fragment.xml +++ b/menas/ui/components/mappingTable/addMappingTable.fragment.xml @@ -17,7 +17,7 @@ xmlns:t="sap.ui.table" xmlns:hdfs="components.hdfs"> + contentWidth="950px"> diff --git a/menas/ui/generic/formatters.js b/menas/ui/generic/formatters.js index 9a43c6a03..41036ccbb 100644 --- a/menas/ui/generic/formatters.js +++ b/menas/ui/generic/formatters.js @@ -109,7 +109,7 @@ var Formatters = new function() { if (!oDate) return ""; return this.infoDateFormat.format(oDate) - } + }; this.toStringInfoDate = function(oDate) { return this.infoDateFormat.format(oDate); diff --git a/menas/ui/service/EntityDialog.js b/menas/ui/service/EntityDialog.js index 8e619557f..a66d11d4b 100644 --- a/menas/ui/service/EntityDialog.js +++ b/menas/ui/service/EntityDialog.js @@ -36,8 +36,6 @@ class EntityDialog { submit() { let newEntity = this.oDialog.getModel("entity").oData; - console.log(`submitted entity: ${JSON.stringify(newEntity)}`); - if (!newEntity.isEdit && newEntity.name && typeof (newEntity.nameUnique) === "undefined") { // need to wait for the service call setTimeout(this.submit.bind(this), 500); @@ -515,7 +513,6 @@ class EditMappingTableDialog extends MappingTableDialog { const current = this.oController._model.getProperty("/currentMappingTable"); const updatedFilters = [FilterTreeUtils.addNiceNamesToFilterData(this.filterEdit.resetFilterDataValidation(current.filter))]; - console.log(`current filters: ${JSON.stringify(updatedFilters)}`); current.isEdit = true; current.title = "Edit";