From 1a693fba2dca00c2c2bd2b077518e84efc306a1e Mon Sep 17 00:00:00 2001 From: Pete Matsyburka Date: Sat, 30 Dec 2023 11:42:46 +0200 Subject: [PATCH] remove payment field type from selfhosted --- app/javascript/application.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/application.js b/app/javascript/application.js index 178b3623..c20f0718 100644 --- a/app/javascript/application.js +++ b/app/javascript/application.js @@ -86,7 +86,7 @@ window.customElements.define('template-builder', class extends HTMLElement { backgroundColor: '#faf7f5', withPhone: this.dataset.withPhone === 'true', withLogo: this.dataset.withLogo !== 'false', - withPayment: this.dataset.withPayment !== 'false', + withPayment: this.dataset.withPayment === 'true', acceptFileTypes: this.dataset.acceptFileTypes, isDirectUpload: this.dataset.isDirectUpload === 'true' })