Disabling comment editing

Hey,

Any options to disable the edit option of comment.

Right now when user comment something they can always edit it on a later and save.

Any option to disable them through custom script

Hi @Rahul-R,

please apply the custom/client script.

frappe.ui.form.on('Your DocType',  {
    refresh: function(frm) {
        $('.btn.btn-link.action-btn').hide();
    }
});

Then reload (Ctrl + Shift + R) and check it.

Thank You!

5 Likes

@NCP Thanks a lot :v: