From dd17ba036d45c50b635239d611400ead569b5a98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C5=BEe=20Fortun?= Date: Fri, 7 Apr 2023 16:15:04 +0200 Subject: [PATCH] Fix inline editing affecting other record values in rare cases --- .../web/compose/src/components/PageBlocks/RecordListBase.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/web/compose/src/components/PageBlocks/RecordListBase.vue b/client/web/compose/src/components/PageBlocks/RecordListBase.vue index 6d84e5896..e8bdb6033 100644 --- a/client/web/compose/src/components/PageBlocks/RecordListBase.vue +++ b/client/web/compose/src/components/PageBlocks/RecordListBase.vue @@ -839,7 +839,7 @@ export default { }, showFooter () { - return !this.options.hidePaging + return this.showPageNavigation || this.options.showTotalCount }, getPagination () { @@ -1684,6 +1684,7 @@ export default { this.refresh(true) this.inlineEdit.fields = [] this.inlineEdit.recordIDs = [] + this.inlineEdit.record = {} }, isFieldEditable (field) {