Merge pull request #1428 from OpenRefine/issue1351

Fix overflow issue in data extension dialog
This commit is contained in:
Owen Stephens 2018-01-31 13:17:51 +00:00 committed by GitHub
commit cd58557424
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -333,7 +333,7 @@ ExtendReconciledDataPreviewDialog.prototype._constrainProperty = function(id) {
for(var i = 0; i < fields.length; i++) {
var field = fields[i];
var fieldHTML = '';
var currentValue = field.default;
var currentValue = field['default'];
if (property.settings != null && property.settings[field.name] != null) {
currentValue = property.settings[field.name];
}

View File

@ -53,6 +53,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.extend-data-preview-dialog .preview-container {
border: 1px solid #aaa;
overflow: auto;
max-width: 600px;
}
.extend-data-preview-dialog .preview-container table {