Merge pull request #24745 from ankush/no_team_updates
fix(HR): hide "more" button from team updates
This commit is contained in:
commit
82c6223196
@ -36,7 +36,7 @@ frappe.team_updates = {
|
||||
start: me.start
|
||||
},
|
||||
callback: function(r) {
|
||||
if(r.message) {
|
||||
if (r.message && r.message.length > 0) {
|
||||
r.message.forEach(function(d) {
|
||||
me.add_row(d);
|
||||
});
|
||||
@ -75,6 +75,6 @@ frappe.team_updates = {
|
||||
}
|
||||
me.last_feed_date = date;
|
||||
|
||||
$(frappe.render_template('team_update_row', data)).appendTo(me.body)
|
||||
$(frappe.render_template('team_update_row', data)).appendTo(me.body);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user