diff --git a/js/sql.js b/js/sql.js
index 01d97cc70..e2199cd06 100644
--- a/js/sql.js
+++ b/js/sql.js
@@ -110,7 +110,9 @@ $(document).ready(function() {
$(input_siblings).each(function() {
var data_value = $(this).html();
- $(this).html('');
+ if($(this).is(':not(.truncated, .transformed, .relation)')) {
+ $(this).html('');
+ }
})
})
@@ -130,7 +132,9 @@ $(document).ready(function() {
$(input_siblings).each(function() {
var new_data_value = $(this).find('textarea').html();
- $(this).html(new_data_value);
+ if($(this).is(':not(.truncated, .transformed, .relation)')) {
+ $(this).html(new_data_value);
+ }
})
})
})
\ No newline at end of file