From 46db0aa17736fbb2f7aba88e1ddda119b0b37b24 Mon Sep 17 00:00:00 2001 From: Nikhil Nandagopal Date: Mon, 7 Sep 2020 10:44:58 +0530 Subject: [PATCH 1/3] Update ---bug-report.md --- .github/ISSUE_TEMPLATE/---bug-report.md | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/---bug-report.md b/.github/ISSUE_TEMPLATE/---bug-report.md index b6ba026500..33e8d9d952 100644 --- a/.github/ISSUE_TEMPLATE/---bug-report.md +++ b/.github/ISSUE_TEMPLATE/---bug-report.md @@ -12,24 +12,13 @@ assignees: Nikhil-Nandagopal [What happened] ### Steps to reproduce the behaviour: +Add steps to reproduce this behaviour, include console / network logs & screenshots 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error -Good items to include here include: -- Console / network logs from your browser -- Screenshots - ### Important Details - -How are you running appsmith? - -On-Premise w/ Docker, version x.y.z - -SaaS (appsmith.com) - - -Which browser / OS are you using? + - Version: [Cloud / Self-Hosted vx.x] - OS: [e.g.MacOSX] - Browser [e.g. chrome, safari] From 437d04f045b3e203ca8bdbfe9fe37b34d2bc775a Mon Sep 17 00:00:00 2001 From: Trisha Anand Date: Mon, 7 Sep 2020 11:12:08 +0530 Subject: [PATCH 2/3] Added a field to denote `confirmBeforeExecute` field whose functionality would be handled by the client. (#487) --- .../src/main/java/com/appsmith/server/domains/Action.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Action.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Action.java index 788aa25f07..a68dba0777 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Action.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Action.java @@ -71,6 +71,8 @@ public class Action extends BaseDomain { @JsonIgnore Boolean userSetOnLoad = false; + Boolean confirmBeforeExecute = false; + Documentation documentation; /** From a8a7955f41577e09969f3acdbdc71366191402b1 Mon Sep 17 00:00:00 2001 From: Trisha Anand Date: Mon, 7 Sep 2020 11:13:58 +0530 Subject: [PATCH 3/3] Added new fields colour and icon in application required for homepage redesign project (#499) --- .../main/java/com/appsmith/server/domains/Application.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Application.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Application.java index 92da24f9af..45c76f252e 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Application.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/Application.java @@ -38,4 +38,8 @@ public class Application extends BaseDomain { @JsonIgnore String clonedFromApplicationId; + String colour; + + String icon; + }