Merge branch 'release' of https://github.com/appsmithorg/appsmith into release
This commit is contained in:
commit
96d4e2b787
|
|
@ -19,7 +19,7 @@ import { Datasource } from "api/DatasourcesApi";
|
|||
import { debounce } from "lodash";
|
||||
import { WidgetProps } from "widgets/BaseWidget";
|
||||
import { evaluateDataTreeWithFunctions } from "selectors/dataTreeSelectors";
|
||||
import { ActionData } from "@appsmith/reducers/entityReducers/actionsReducer";
|
||||
import { ActionData } from "reducers/entityReducers/actionsReducer";
|
||||
import log from "loglevel";
|
||||
|
||||
const findWidgets = (widgets: WidgetProps, keyword: string) => {
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@ class Editor extends Component<Props> {
|
|||
if (applicationId && pageId) {
|
||||
this.props.initEditor(applicationId, pageId);
|
||||
}
|
||||
if (cloudHosting) {
|
||||
if (cloudHosting && intercomAppID) {
|
||||
window.Intercom("boot", {
|
||||
// eslint-disable-next-line @typescript-eslint/camelcase
|
||||
app_id: intercomAppID,
|
||||
|
|
@ -110,7 +110,7 @@ class Editor extends Component<Props> {
|
|||
}
|
||||
}
|
||||
componentDidUpdate(previously: Props) {
|
||||
if (cloudHosting) window.Intercom("update");
|
||||
if (cloudHosting && intercomAppID) window.Intercom("update");
|
||||
if (
|
||||
previously.isPublishing &&
|
||||
!(this.props.isPublishing || this.props.errorPublishing)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user