From 3be9b2fd9da6cb00a84d7ca9253e59271036c038 Mon Sep 17 00:00:00 2001 From: Anagh Hegde Date: Thu, 1 Jun 2023 16:22:38 +0530 Subject: [PATCH] chore: revert Exclude published mode resources for customJSLibs (#23944) Reverting the PR - https://github.com/appsmithorg/appsmith/commit/58fb03e18a31348a78ad307180a34e6a91a47c2c --- .../main/java/com/appsmith/server/helpers/GitFileUtils.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/helpers/GitFileUtils.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/helpers/GitFileUtils.java index 9b5f395d9f..04780b6a23 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/helpers/GitFileUtils.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/helpers/GitFileUtils.java @@ -357,10 +357,9 @@ public class GitFileUtils { // Don't commit application name as while importing we are using the repoName as application name application.setName(null); application.setPublishedPages(null); - application.setPublishedApplicationDetail(null); - application.setPublishedCustomJSLibs(null); application.setIsPublic(null); application.setSlug(null); + application.setPublishedApplicationDetail(null); } private void removeUnwantedFieldFromAction(NewAction action) {