Commit 84aa0a6b authored by rohitwaghchaure's avatar rohitwaghchaure Committed by Rushabh Mehta
Browse files

[Fix] On add new row, data is not displaying in the previous row (#4517)

parent 2045e4f1
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -308,7 +308,7 @@ frappe.ui.form.GridRow = Class.extend({
} else {
this.row.toggleClass('editable-row', false);
this.columns_list.forEach(function(column) {
if (column.df.hidden == false) {
if (!column.df.hidden) {
column.static_area.toggle(true);
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment