diff --git a/app/client/src/constants/messages.ts b/app/client/src/constants/messages.ts index 4361e7230b..df7bfb6a00 100644 --- a/app/client/src/constants/messages.ts +++ b/app/client/src/constants/messages.ts @@ -136,7 +136,7 @@ export const AUTOFIT_COLUMN = "Autofit column"; export const TIMEZONE = "Timezone"; export const ENABLE_TIME = "Enable Time"; -export const BACK_TO_EDITOR = "Back to Editor"; +export const EDIT_APP = "Edit App"; export const LIGHTNING_MENU_DATA_API = "Use data from an API"; export const LIGHTNING_MENU_DATA_QUERY = "Use data from a Query"; diff --git a/app/client/src/pages/AppViewer/viewer/AppViewerHeader.tsx b/app/client/src/pages/AppViewer/viewer/AppViewerHeader.tsx index 1f616b9899..2c3975c7d0 100644 --- a/app/client/src/pages/AppViewer/viewer/AppViewerHeader.tsx +++ b/app/client/src/pages/AppViewer/viewer/AppViewerHeader.tsx @@ -2,7 +2,7 @@ import React from "react"; import styled from "styled-components"; import StyledHeader from "components/designSystems/appsmith/StyledHeader"; import Button from "components/editorComponents/Button"; -import { BACK_TO_EDITOR } from "constants/messages"; +import { EDIT_APP } from "constants/messages"; import { isPermitted } from "pages/Applications/permissionHelpers"; const HeaderWrapper = styled(StyledHeader)` position: fixed; @@ -37,7 +37,7 @@ export const AppViewerHeader = (props: AppViewerHeaderProps) => { intent="primary" icon="chevron-left" iconAlignment="left" - text={BACK_TO_EDITOR} + text={EDIT_APP} filled /> )} diff --git a/app/client/src/widgets/MapWidget.tsx b/app/client/src/widgets/MapWidget.tsx index 8ee3124e77..0a19c83c73 100644 --- a/app/client/src/widgets/MapWidget.tsx +++ b/app/client/src/widgets/MapWidget.tsx @@ -118,17 +118,18 @@ class MapWidget extends BaseWidget { {!google.enabled && (

{"Map Widget disabled"}

+

{"Map widget requires a Google Maps API Key"}

- {"Map widget requires a Google Maps "} + {"See our"} - API Key + {"documentation"} + {"to configure API Keys"}

-

{"Refer our Docs to configure API Keys"}

)} {google.enabled && ( diff --git a/deploy/install.sh b/deploy/install.sh index 3f74a72ed3..a0c1f47ce2 100755 --- a/deploy/install.sh +++ b/deploy/install.sh @@ -56,7 +56,6 @@ check_os() { echo $os_name case "${os_name}" in \"Ubuntu*\") - echo "In here" desired_os=1 package_manager="apt-get" ;; @@ -108,7 +107,7 @@ echo "" if [[ $desired_os -eq 0 ]];then echo "This script is currently meant to install Appsmith on Mac OS X | Ubuntu | RHEL | CentOS machines." - echo "Please contact hello@appsmith.com with your OS details if you wish to extend this support" + echo "Please contact support@appsmith.com with your OS details if you wish to extend this support" echo -e "Exiting for now. Bye! \U1F44B" exit fi diff --git a/deploy/template/docker.env.sh b/deploy/template/docker.env.sh index 7847c5ee01..748cf7c986 100644 --- a/deploy/template/docker.env.sh +++ b/deploy/template/docker.env.sh @@ -10,14 +10,15 @@ cat > docker.env << EOF # ***** Email ********** APPSMITH_MAIL_ENABLED=false -# APPSMITH_MAIL_FROM= -# APPSMITH_REPLY_TO= +# APPSMITH_MAIL_FROM=YOUR_VERIFIED_EMAIL_ID +# APPSMITH_REPLY_TO=YOUR_VERIFIED_EMAIL_ID # APPSMITH_MAIL_HOST= -# APPSMITH_MAIL_PASSWORD= # APPSMITH_MAIL_PORT= -# APPSMITH_MAIL_SMTP_AUTH= +# ***** Set to true if providing a TLS port ****** # APPSMITH_MAIL_SMTP_TLS_ENABLED= # APPSMITH_MAIL_USERNAME= +# APPSMITH_MAIL_PASSWORD= +# APPSMITH_MAIL_SMTP_AUTH=true # ****************************** # ******** Google OAuth ********