fix: Update label for editing in full page and add custom logic for rendering it. (#17149)
This commit is contained in:
parent
eea5cc52da
commit
8c8249894b
2 changed files with 2 additions and 2 deletions
|
|
@ -7,7 +7,7 @@ context('Timeline Email', () => {
|
|||
|
||||
it('Adding new ToDo', () => {
|
||||
cy.click_listview_primary_button('Add ToDo');
|
||||
cy.get('.custom-actions:visible > .btn').contains("Edit in full page").click({delay: 500});
|
||||
cy.get('.custom-actions:visible > .btn').contains("Edit Full Form").click({delay: 500});
|
||||
cy.fill_field("description", "Test ToDo", "Text Editor");
|
||||
cy.wait(500);
|
||||
cy.get('.primary-action').contains('Save').click({force: true});
|
||||
|
|
|
|||
|
|
@ -267,7 +267,7 @@ frappe.ui.form.QuickEntryForm = class QuickEntryForm {
|
|||
render_edit_in_full_page_link() {
|
||||
var me = this;
|
||||
this.dialog.add_custom_action(
|
||||
`${__("Edit in full page")}`,
|
||||
`${__("Edit Full Form")}`,
|
||||
() => me.open_doc(true)
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue