From ce174c64f3db6f7676fd170ec65b5f980bf6d4d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C5=BEe=20Fortun?= Date: Tue, 20 Feb 2024 13:39:01 +0100 Subject: [PATCH] Fix record list edit action using rowCreateUrl instead of rowEditUrl --- client/web/compose/src/components/PageBlocks/RecordListBase.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/web/compose/src/components/PageBlocks/RecordListBase.vue b/client/web/compose/src/components/PageBlocks/RecordListBase.vue index 52808e63e..55c229f44 100644 --- a/client/web/compose/src/components/PageBlocks/RecordListBase.vue +++ b/client/web/compose/src/components/PageBlocks/RecordListBase.vue @@ -2001,7 +2001,7 @@ export default { }) } else { this.$router.push({ - name: this.options.rowCreateUrl || 'page.record.edit', + name: this.options.rowEditUrl || 'page.record.edit', params: { pageID: this.recordPageID, recordID }, query: null, })