Skip to content

Commit 6cc9e9a

Browse files
authored
Merge pull request #41186 from appsmithorg/release
Daily Promotion - 21/08
2 parents 7736fa0 + ae2f286 commit 6cc9e9a

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

app/client/src/ce/components/DSDataFilter/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ export function DSDataFilter({
7474
const rampLinkSelector = getRampLink({
7575
section: RampSection.DSEditor,
7676
feature: RampFeature.MultipleEnv,
77+
isBusinessFeature: false,
7778
});
7879
const rampLink = useSelector(rampLinkSelector);
7980

app/client/src/ce/components/SwitchEnvironment/index.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import styled from "styled-components";
44
import { Icon, Link, Option, Select, Text, Tooltip } from "@appsmith/ads";
55
import { capitalizeFirstLetter } from "utils/helpers";
66
import {
7-
BUSINESS_EDITION_TEXT,
7+
ENTERPRISE_EDITION_TEXT,
88
SWITCH_ENV_DISABLED_TOOLTIP_TEXT,
99
createMessage,
1010
} from "ee/constants/messages";
@@ -68,7 +68,7 @@ export const DisabledTooltipContent = (rampLink: string) => {
6868
>
6969
{createMessage(SWITCH_ENV_DISABLED_TOOLTIP_TEXT)}
7070
<TooltipLink kind="primary" target="_blank" to={rampLink}>
71-
{createMessage(BUSINESS_EDITION_TEXT)}
71+
{createMessage(ENTERPRISE_EDITION_TEXT)}
7272
</TooltipLink>
7373
</Text>
7474
);
@@ -83,6 +83,7 @@ export default function SwitchEnvironment({}: Props) {
8383
const rampLinkSelector = getRampLink({
8484
section: RampSection.BottomBarEnvSwitcher,
8585
feature: RampFeature.MultipleEnv,
86+
isBusinessFeature: false,
8687
});
8788
const rampLink = useSelector(rampLinkSelector);
8889

app/client/src/ce/constants/messages.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ export const USERS_HAVE_ACCESS_TO_ONLY_THIS_APP = () =>
206206
"Users will only have access to this application";
207207
export const NO_USERS_INVITED = () => "You haven't invited any users yet";
208208
export const BUSINESS_EDITION_TEXT = () => "business plan";
209+
export const ENTERPRISE_EDITION_TEXT = () => "enterprise plan";
209210
export const PARTNER_PROGRAM_CALLOUT = (
210211
email: string,
211212
) => `${email} is outside your organisation. If you’re building this app

app/client/src/sagas/autoHeightSagas/helpers.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -204,10 +204,6 @@ export function* getMinHeightBasedOnChildren(
204204
}
205205
}
206206

207-
if (widgetId === MAIN_CONTAINER_WIDGET_ID) {
208-
return minHeightInRows + GridDefaults.MAIN_CANVAS_EXTENSION_OFFSET;
209-
}
210-
211207
return minHeightInRows;
212208
}
213209
/**

0 commit comments

Comments
 (0)