Skip to content

chore: updated the run behaviour toast messages#40653

Closed
AmanAgarwal041 wants to merge 7 commits intoreleasefrom
chore/update-toast-run-behaviour
Closed

chore: updated the run behaviour toast messages#40653
AmanAgarwal041 wants to merge 7 commits intoreleasefrom
chore/update-toast-run-behaviour

Conversation

@AmanAgarwal041
Copy link
Contributor

@AmanAgarwal041 AmanAgarwal041 commented May 14, 2025

Description

Changed the logic to update the message of the actions getting executed on page load or automatic based on the flag release_reactive_actions_enabled. Added the test case for onLoadExecutables file.

  • If flag is true, toast message would say automatic on binding and manual on removal of binding
  • If flag is false, toast message would say page load on binding and manual on removal of binding

Fixes #40471
or
Fixes Issue URL

Warning

If no issue exists, please create an issue first, and check with the maintainers if the issue is valid.

Automation

/ok-to-test tags="@tag.Table, @tag.JS, @tag.Datasource"

🔍 Cypress test results

Warning

Tests have not run on the HEAD f042d98 yet


Mon, 19 May 2025 08:09:11 UTC

Communication

Should the DevRel and Marketing teams inform users about this change?

  • Yes
  • No

Summary by CodeRabbit

  • New Features

    • Introduced a new feature flag to control reactive actions.
    • Added support for an "automatic" run behavior, allowing actions to run automatically when dependent variables change.
  • Bug Fixes

    • Improved logic for updating which actions run automatically on page load, with behavior now controlled by the new feature flag.
  • Tests

    • Added comprehensive tests to verify correct behavior and messaging when updating action run behaviors under various scenarios.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented May 14, 2025

Walkthrough

A new feature flag and enum constant were introduced to control "automatic" run behavior for executables. The logic in OnLoadExecutablesUtilCEImpl was refactored to use this flag, adjusting how run behaviors and related messages are determined. Constructor dependencies and comprehensive unit tests were added to support and verify these changes.

Changes

File(s) Change Summary
.../FeatureFlagEnum.java Added new feature flag release_reactive_actions_enabled to the enum.
.../RunBehaviourEnum.java Added new enum constant AUTOMATIC to represent automatic run behavior.
.../OnLoadExecutablesUtilCEImpl.java Refactored logic in updateExecutablesRunBehaviour to use the new feature flag and enum; added feature flag field.
.../OnLoadExecutablesUtilImpl.java Updated constructor to accept and pass FeatureFlagService dependency.
.../OnLoadExecutablesUtilCEImplTest.java Added a new comprehensive test class covering various scenarios for run behavior updates and message generation.

Sequence Diagram(s)

sequenceDiagram
    participant Client
    participant OnLoadExecutablesUtilCEImpl
    participant FeatureFlagService
    participant ExecutableOnLoadService

    Client->>OnLoadExecutablesUtilCEImpl: updateExecutablesRunBehaviour(...)
    OnLoadExecutablesUtilCEImpl->>FeatureFlagService: isFlagEnabled(release_reactive_actions_enabled)
    FeatureFlagService-->>OnLoadExecutablesUtilCEImpl: flag state (true/false)
    OnLoadExecutablesUtilCEImpl->>ExecutableOnLoadService: fetch all executables
    ExecutableOnLoadService-->>OnLoadExecutablesUtilCEImpl: executables list
    OnLoadExecutablesUtilCEImpl->>OnLoadExecutablesUtilCEImpl: Determine run behavior changes
    OnLoadExecutablesUtilCEImpl->>OnLoadExecutablesUtilCEImpl: Update messages based on flag and changes
    OnLoadExecutablesUtilCEImpl-->>Client: Mono<Boolean> (indicating if updates occurred)
Loading

Assessment against linked issues

Objective Addressed Explanation
Update toast message from "page load" to "automatic" based on feature flag; "manual" on removal (40471)

Poem

In the land of flags, a new one appeared,
"Automatic" actions—no longer weird!
Toasts now adapt, with messages bright,
Page load or auto, depending what's right.
Tests keep it safe, as features expand,
Reactive and ready—code's in command! 🚦✨

Note

⚡️ AI Code Reviews for VS Code, Cursor, Windsurf

CodeRabbit now has a plugin for VS Code, Cursor and Windsurf. This brings AI code reviews directly in the code editor. Each commit is reviewed immediately, finding bugs before the PR is raised. Seamless context handoff to your AI code agent ensures that you can easily incorporate review feedback.
Learn more here.


Note

⚡️ Faster reviews with caching

CodeRabbit now supports caching for code and dependencies, helping speed up reviews. This means quicker feedback, reduced wait times, and a smoother review experience overall. Cached data is encrypted and stored securely. This feature will be automatically enabled for all accounts on May 16th. To opt out, configure Review - Disable Cache at either the organization or repository level. If you prefer to disable all data retention across your organization, simply turn off the Data Retention setting under your Organization Settings.
Enjoy the performance boost—your workflow just got faster.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@AmanAgarwal041
Copy link
Contributor Author

/build-deploy-preview skip-tests=true

@github-actions github-actions bot added Core Query Execution Issues related to the execution of all queries IDE Pod Issues that new developers face while exploring the IDE IDE Product Issues related to the IDE Product Integrations Pod Integrations Product Issues related to a specific integration Query Settings Issues related to the settings of all queries Query Widgets & IDE Pod All issues related to Query, JS, Eval, Widgets & IDE Task A simple Todo skip-changelog Adding this label to a PR prevents it from being listed in the changelog labels May 14, 2025
@github-actions
Copy link

Deploying Your Preview: https://github.com/appsmithorg/appsmith/actions/runs/15027503673.
Workflow: On demand build Docker image and deploy preview.
skip-tests: true.
env: ``.
PR: 40653.
recreate: .

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (1)
app/server/appsmith-server/src/test/java/com/appsmith/server/onload/internal/OnLoadExecutablesUtilCEImplTest.java (1)

253-254: Consider additional test cases

The comment suggests adding more tests. Consider adding tests for:

  1. Mixed changes with feature flag off
  2. Using ON_PAGE_LOAD with feature flag on (if supported)
  3. Edge cases like null run behavior

These would further increase test coverage.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 6c8b040 and 9fed3c2.

📒 Files selected for processing (5)
  • app/server/appsmith-interfaces/src/main/java/com/appsmith/external/enums/FeatureFlagEnum.java (1 hunks)
  • app/server/appsmith-interfaces/src/main/java/com/appsmith/external/models/RunBehaviourEnum.java (1 hunks)
  • app/server/appsmith-server/src/main/java/com/appsmith/server/onload/internal/OnLoadExecutablesUtilCEImpl.java (4 hunks)
  • app/server/appsmith-server/src/main/java/com/appsmith/server/onload/internal/OnLoadExecutablesUtilImpl.java (2 hunks)
  • app/server/appsmith-server/src/test/java/com/appsmith/server/onload/internal/OnLoadExecutablesUtilCEImplTest.java (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (2)
  • GitHub Check: server-unit-tests / server-unit-tests
  • GitHub Check: server-spotless / spotless-check
🔇 Additional comments (17)
app/server/appsmith-interfaces/src/main/java/com/appsmith/external/enums/FeatureFlagEnum.java (1)

32-32: LGTM! New feature flag added correctly.

The addition of release_reactive_actions_enabled follows the established pattern in the enum, positioned appropriately before the EE flags section.

app/server/appsmith-interfaces/src/main/java/com/appsmith/external/models/RunBehaviourEnum.java (1)

8-9: LGTM! Enum updated with new value and proper trailing comma.

The new AUTOMATIC enum value is well-documented with a clear comment explaining its purpose.

app/server/appsmith-server/src/main/java/com/appsmith/server/onload/internal/OnLoadExecutablesUtilImpl.java (2)

7-7: LGTM! Import added for the FeatureFlagService dependency.

Proper import added to support the new constructor parameter.


22-30: Constructor updated correctly to inject the FeatureFlagService.

The constructor has been properly updated to accept and pass the FeatureFlagService to the superclass.

app/server/appsmith-server/src/main/java/com/appsmith/server/onload/internal/OnLoadExecutablesUtilCEImpl.java (4)

5-5: LGTM! Import added for FeatureFlagEnum.

Required import added to support feature flag checking.


22-22: LGTM! Import added for FeatureFlagService.

Proper import added for the new dependency.


95-95: LGTM! Dependency on FeatureFlagService added.

New field added to support feature flag checks.


405-443: Conditional toast message implementation looks good.

The implementation properly uses the feature flag to conditionally show different toast messages:

  • When flag is enabled: messages refer to "automatic" execution and "no longer run automatically"
  • When flag is disabled: messages refer to "on page load" execution and "no longer be executed on page load"

This aligns with the PR objective to update toast messages related to run behavior based on the feature flag state.

app/server/appsmith-server/src/test/java/com/appsmith/server/onload/internal/OnLoadExecutablesUtilCEImplTest.java (9)

35-36: LGTM: Proper dependency injection for feature flag

Good job mocking the FeatureFlagService which is a critical dependency for the conditional toast message logic.


42-51: Constructor initialization looks good

The constructor properly initializes all required dependencies including the feature flag service. Observation-related services are correctly set to null as they're not needed for these tests.


53-65: LGTM: Base case test is comprehensive

Good test for the empty executables scenario, verifying the method returns false and completes.


67-96: LGTM: Good test for legacy behavior

This test properly verifies the behavior when feature flag is off, confirming the "page load" message appears.


98-129: LGTM: Good test for new behavior

This test correctly verifies the behavior when feature flag is on, confirming the "automatic" message appears.


131-154: LGTM: Good test for turning off executables with legacy behavior

This test properly verifies the behavior when turning off executables with feature flag off.


156-180: LGTM: Good test for turning off executables with new behavior

This test correctly verifies the behavior when turning off executables with feature flag on.


182-222: LGTM: Comprehensive mixed state test

Good comprehensive test that verifies both enabling and disabling executables when feature flag is enabled.


224-251: LGTM: Good test for no-change scenarios

This test properly verifies that no messages are added when there's no change in run behavior.

@github-actions
Copy link

Failed server tests

  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldAddMessageWhenExecutableTurnedOff_FeatureFlagOff
  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldAddMessageWhenExecutableTurnedOff_FeatureFlagOn
  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldAddMessageWhenExecutableTurnedOn_FeatureFlagOff
  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldAddMessageWhenExecutableTurnedOn_FeatureFlagOn
  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldAddMessagesForBothOnAndOff_FeatureFlagOn
  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldNotAddMessageWhenNoChange_FeatureFlagOn
  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldReturnFalseWhenNoExecutables

@github-actions
Copy link

Failed server tests

  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldAddMessageWhenExecutableTurnedOff_FeatureFlagOff
  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldAddMessageWhenExecutableTurnedOff_FeatureFlagOn
  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldAddMessageWhenExecutableTurnedOn_FeatureFlagOff
  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldAddMessageWhenExecutableTurnedOn_FeatureFlagOn
  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldAddMessagesForBothOnAndOff_FeatureFlagOn
  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldNotAddMessageWhenNoChange_FeatureFlagOn

@github-actions
Copy link

Failed server tests

  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldAddMessageWhenExecutableTurnedOff_FeatureFlagOff
  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldAddMessageWhenExecutableTurnedOff_FeatureFlagOn
  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldAddMessageWhenExecutableTurnedOn_FeatureFlagOff
  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldAddMessageWhenExecutableTurnedOn_FeatureFlagOn
  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldAddMessagesForBothOnAndOff_FeatureFlagOn
  • com.appsmith.server.onload.internal.OnLoadExecutablesUtilCEImplTest#updateExecutablesRunBehaviour_shouldNotAddMessageWhenNoChange_FeatureFlagOn

@github-actions
Copy link

Failed server tests

  • com.appsmith.server.services.LayoutActionServiceTest#updateLayout_WhenOnLoadChanged_ActionExecuted
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic_withAllTypesOfActionReferences
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithoutAstLogic
  • com.appsmith.server.services.PageServiceTest#clonePage
  • com.appsmith.server.services.PageServiceTest#clonePage_whenPageCloned_defaultIdsRetained

@JsonView(Views.Internal.class)
Boolean executeOnLoad;

@Deprecated
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@AmanAgarwal041 Can you pull release into this branch? This change is already made on release

*/
@Deprecated
@JsonView({Views.Internal.class, FromRequest.class, Git.class})
@JsonView({Views.Internal.class, FromRequest.class})
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change is also made on release

(cherry picked from commit 9583638)
@AmanAgarwal041 AmanAgarwal041 force-pushed the chore/update-toast-run-behaviour branch from da03474 to e4b5f15 Compare May 16, 2025 10:23
@AmanAgarwal041
Copy link
Contributor Author

/build-deploy-preview skip-tests=true

@github-actions
Copy link

Deploying Your Preview: https://github.com/appsmithorg/appsmith/actions/runs/15066336640.
Workflow: On demand build Docker image and deploy preview.
skip-tests: true.
env: ``.
PR: 40653.
recreate: .

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
app/server/appsmith-server/src/test/java/com/appsmith/server/onload/internal/OnLoadExecutablesUtilCEImplTest.java (1)

33-65: Consider adding test for edge cases in feature flag transitions

While the tests cover both feature flag states individually, consider adding a test for transitions - what happens when the feature flag changes state and executables need to be updated.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro (Legacy)

📥 Commits

Reviewing files that changed from the base of the PR and between da03474 and 2cfa148.

📒 Files selected for processing (2)
  • app/server/appsmith-server/src/main/java/com/appsmith/server/onload/internal/OnLoadExecutablesUtilCEImpl.java (4 hunks)
  • app/server/appsmith-server/src/test/java/com/appsmith/server/onload/internal/OnLoadExecutablesUtilCEImplTest.java (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (2)
  • GitHub Check: server-unit-tests / server-unit-tests
  • GitHub Check: server-spotless / spotless-check
🔇 Additional comments (11)
app/server/appsmith-server/src/test/java/com/appsmith/server/onload/internal/OnLoadExecutablesUtilCEImplTest.java (5)

1-326: Comprehensive test coverage for the feature flag behavior

This new test class provides solid test coverage for the refactored behavior in OnLoadExecutablesUtilCEImpl, with tests for both feature flag states (enabled/disabled) and various run behavior scenarios.


89-123: Well-structured test for feature flag enabled case

This test effectively validates that when the feature flag is enabled, the proper "automatic" message is generated for executables turned on.


125-159: Test confirms correct message when feature flag is disabled

Good validation that the traditional "page load" message is shown when the feature flag is disabled, ensuring backward compatibility.


197-252: Thorough test for multiple executables with mixed state changes

This test comprehensively covers the scenario where some executables are turned on while others are turned off, validating that the correct messages are generated for each.


290-324: Test verifies userSetOnLoad=true behavior

Good test to confirm that executables with userSetOnLoad=true are not updated, preserving user-defined settings.

app/server/appsmith-server/src/main/java/com/appsmith/server/onload/internal/OnLoadExecutablesUtilCEImpl.java (6)

309-440: Well-structured refactoring for feature flag integration

The method has been effectively refactored to handle both feature flag states while maintaining clear logic flow. The conditional messages and run behavior handling align with the PR objectives.


323-336: Clean implementation of feature flag-based executable filtering

This filtering logic clearly distinguishes between the two run behaviors (ON_PAGE_LOAD and AUTOMATIC) based on the feature flag state.


404-424: Clear message generation based on feature flag state

The message generation logic correctly implements different user-facing messages based on the feature flag, matching the PR objectives for toast message updates.


342-357: Well-designed state transition handling

The code cleanly handles the mapping of executables to their target behavior and computes the differences between existing and new states.


364-380: Respects user-defined settings

The implementation properly respects the userSetOnLoad flag, ensuring that user-explicitly-set behaviors are preserved.


95-95: New dependency properly declared

The FeatureFlagService is correctly added as a dependency to support the feature flag checks.

@github-actions
Copy link

Deploy-Preview-URL: https://ce-40653.dp.appsmith.com

@github-actions
Copy link

Failed server tests

  • com.appsmith.server.services.LayoutActionServiceTest#updateLayout_WhenOnLoadChanged_ActionExecuted
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic_withAllTypesOfActionReferences
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithoutAstLogic
  • com.appsmith.server.services.PageServiceTest#clonePage
  • com.appsmith.server.services.PageServiceTest#clonePage_whenPageCloned_defaultIdsRetained

2 similar comments
@github-actions
Copy link

Failed server tests

  • com.appsmith.server.services.LayoutActionServiceTest#updateLayout_WhenOnLoadChanged_ActionExecuted
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic_withAllTypesOfActionReferences
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithoutAstLogic
  • com.appsmith.server.services.PageServiceTest#clonePage
  • com.appsmith.server.services.PageServiceTest#clonePage_whenPageCloned_defaultIdsRetained

@github-actions
Copy link

Failed server tests

  • com.appsmith.server.services.LayoutActionServiceTest#updateLayout_WhenOnLoadChanged_ActionExecuted
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic_withAllTypesOfActionReferences
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithoutAstLogic
  • com.appsmith.server.services.PageServiceTest#clonePage
  • com.appsmith.server.services.PageServiceTest#clonePage_whenPageCloned_defaultIdsRetained

@github-actions
Copy link

Failed server tests

  • com.appsmith.server.services.LayoutActionServiceTest#updateLayout_WhenOnLoadChanged_ActionExecuted
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithAstLogic_withAllTypesOfActionReferences
  • com.appsmith.server.services.LayoutServiceTest#getActionsExecuteOnLoadWithoutAstLogic
  • com.appsmith.server.services.PageServiceTest#clonePage
  • com.appsmith.server.services.PageServiceTest#clonePage_whenPageCloned_defaultIdsRetained

@sneha122
Copy link
Contributor

Closing this Pr as many unnecessary changes were introduced in this which was making current implementation even more complex. I have created a separate PR where I have updated the toast messages along with solving one other issue. All test cases have passed on that PR, will go ahead and merge that one instead.

@sneha122 sneha122 closed this May 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Core Query Execution Issues related to the execution of all queries IDE Pod Issues that new developers face while exploring the IDE IDE Product Issues related to the IDE Product Integrations Pod Integrations Product Issues related to a specific integration Query Settings Issues related to the settings of all queries Query Widgets & IDE Pod All issues related to Query, JS, Eval, Widgets & IDE skip-changelog Adding this label to a PR prevents it from being listed in the changelog Task A simple Todo

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Task]: Update toast message on page layout changes from page load to automatic

3 participants