Merge branch 'release' of https://github.com/appsmithorg/appsmith into feat/reactive-actions-run-behaviour
This commit is contained in:
commit
d0a1e83ff2
|
|
@ -97,7 +97,7 @@ export const containerDimensionStyles = <T = FlexCssProps[keyof FlexCssProps]>(
|
|||
if (current !== "base") {
|
||||
return (
|
||||
prev +
|
||||
`@container (min-width: ${current}) {& {
|
||||
`@container flex-container (min-width: ${current}) {& {
|
||||
${cssProp}: ${
|
||||
//@ts-expect-error: type mismatch
|
||||
callback ? callback(value[current], extraProps) : value[current]
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
.flexContainer {
|
||||
container-type: inline-size;
|
||||
container-name: flex-container;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
.make-container {
|
||||
container-type: inline-size;
|
||||
container-name: flex-container;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,7 +49,6 @@ import { getAllPageIdentities } from "./selectors";
|
|||
import {
|
||||
openCarbonModal,
|
||||
setCreateAgentModalOpen,
|
||||
toggleFCIntegrations,
|
||||
} from "ee/actions/aiAgentActions";
|
||||
import { getIsAiAgentFlowEnabled } from "ee/selectors/aiAgentSelectors";
|
||||
import { getTemplatesByFlagSelector } from "selectors/templatesSelectors";
|
||||
|
|
@ -116,7 +115,6 @@ function* importTemplateToWorkspaceSaga(
|
|||
|
||||
if (isScratchTemplate) {
|
||||
yield put(openCarbonModal({ shouldOpen: true }));
|
||||
yield put(toggleFCIntegrations({ isEnabled: true }));
|
||||
}
|
||||
|
||||
yield put(setCreateAgentModalOpen({ isOpen: false }));
|
||||
|
|
|
|||
|
|
@ -1045,14 +1045,14 @@ class TableWidgetV2 extends BaseWidget<TableWidgetProps, WidgetState> {
|
|||
|
||||
// Reset widget state when infinite scroll is initially enabled
|
||||
// This should come after all updateInfiniteScrollProperties are done
|
||||
if (!prevProps.infiniteScrollEnabled && infiniteScrollEnabled) {
|
||||
this.resetTableForInfiniteScroll();
|
||||
}
|
||||
const didInfiniteScrollEnabledChange =
|
||||
prevProps.infiniteScrollEnabled !== infiniteScrollEnabled;
|
||||
const didComponentHeightChange =
|
||||
prevProps.componentHeight !== componentHeight;
|
||||
|
||||
// Reset widget state when height changes while infinite scroll is enabled
|
||||
if (
|
||||
infiniteScrollEnabled &&
|
||||
prevProps.componentHeight !== componentHeight
|
||||
didInfiniteScrollEnabledChange ||
|
||||
(infiniteScrollEnabled && didComponentHeightChange)
|
||||
) {
|
||||
this.resetTableForInfiniteScroll();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user