Merge branch 'release' of https://github.com/appsmithorg/appsmith into release

This commit is contained in:
Automated Github Action 2020-08-05 11:04:54 +00:00
commit b66bf6982b
5 changed files with 72 additions and 1 deletions

View File

@ -0,0 +1,22 @@
---
name: "\U0001F6E0 Feature request"
about: Suggest an idea to improve appsmith
title: "[FEATURE]"
labels: enhancement
assignees: Nikhil-Nandagopal
---
## Summary
One paragraph description of the feature.
## Motivation
Why should this be worked on? What problems or use cases does it solve or
improve?
## Additional Context
Any other context or screenshots or API request payload/responses that you
pertain to the feature.

40
.github/ISSUE_TEMPLATE/---bug-report.md vendored Normal file
View File

@ -0,0 +1,40 @@
---
name: "\U0001F41B Bug report"
about: Create a bug report to help us improve appsmith
title: "[BUG]"
labels: bug
assignees: Nikhil-Nandagopal
---
## Description
[What happened]
### Steps to reproduce the behaviour:
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
### What you expected to happen
A clear and concise description of what you expected to happen.
### Screenshots
If applicable, add screenshots to help explain your problem.
### Important Details
How are you running appsmith?
<!-- Please pick one of the following -->
On-Premise w/ Docker, version x.y.z
<!-- --------------- -->
SaaS (appsmith.com)
<!-- --------------- -->
Which browser / OS are you using?
- OS: [e.g.MacOSX]
- Browser [e.g. chrome, safari]

8
.github/ISSUE_TEMPLATE/config.yml vendored Normal file
View File

@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: 🤔 Questions and Help
url: https://discord.com/invite/rBTTVJp
about: Reach out to us on discord or our github discussions page.
- name: 📞 Dedicated Support
url: https://mail.google.com/mail/u/0/?view=cm&fs=1&to=support@appsmith.com&tf=1
about: Write to us if you'd like dedicated support using appsmith

View File

@ -87,6 +87,7 @@ export interface ActionResponse {
statusCode: string; statusCode: string;
duration: string; duration: string;
size: string; size: string;
isExecutionSuccess?: boolean;
} }
export interface MoveActionRequest { export interface MoveActionRequest {

View File

@ -442,7 +442,7 @@ function* runActionSaga(
type: ReduxActionTypes.RUN_ACTION_SUCCESS, type: ReduxActionTypes.RUN_ACTION_SUCCESS,
payload: { [actionId]: payload }, payload: { [actionId]: payload },
}); });
if (payload.statusCode[0] === "2") { if (payload.isExecutionSuccess) {
AppToaster.show({ AppToaster.show({
message: "Action ran successfully", message: "Action ran successfully",
type: ToastType.SUCCESS, type: ToastType.SUCCESS,