Merge pull request #1428 from OpenRefine/issue1351
Fix overflow issue in data extension dialog
This commit is contained in:
commit
cd58557424
@ -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];
|
||||
}
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user