From 8a110567fc13c503b920568fc6bc85d5c94484e7 Mon Sep 17 00:00:00 2001 From: Charlie Humphreys Date: Wed, 7 Dec 2022 07:32:22 -0600 Subject: [PATCH] remove call to persist --- client/homebrew/editor/metadataEditor/metadataEditor.jsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/homebrew/editor/metadataEditor/metadataEditor.jsx b/client/homebrew/editor/metadataEditor/metadataEditor.jsx index b9e702c83..ac644f1a1 100644 --- a/client/homebrew/editor/metadataEditor/metadataEditor.jsx +++ b/client/homebrew/editor/metadataEditor/metadataEditor.jsx @@ -59,8 +59,6 @@ const MetadataEditor = createClass({ }, handleFieldChange : function(name, e){ - callIfExists(e, 'persist'); - // load validation rules, and check input value against them const inputRules = validations[name] ?? []; const validationErr = inputRules.map((rule)=>rule(e.target.value)).filter(Boolean);