3 answers
Hello @Alok Singh,
You must create one button on the LWC component on click
handleback(event) {
setTimeout(
function () {
window.history.back();
}, 1000
);
}
in js , try this it get back you to the same list view record page.
Hello @Alok Singh,
You must create one button on the LWC component on click
handleback(event) {
setTimeout(
function () {
window.history.back();
}, 1000
);
}
in js , try this it get back you to the same list view record page.