You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The auto formatting for if else statements does not handle commas in a way that makes it easy to see that there is an else. For example
// This is hard to see that there is an else
If(true,
UpdateContext({ value: true }),
UpdateContext({ value: false })
);
// And this is even worse:
If(true,
UpdateContext({ value: "Can" });
UpdateContext({ value: "You" }),
UpdateContext({ value: "Find" });
UpdateContext({ value: "The" });
UpdateContext({ value: "Else" });
UpdateContext({ value: "?" });
);
Can we update it so that the formating works as follows.
// This is now clear
If(true,
UpdateContext({ value: true })
,
UpdateContext({ value: false })
);
// And this is is amazingly clearer
If(true,
UpdateContext({ value: "Can" });
UpdateContext({ value: "You" });
,
UpdateContext({ value: "Find" });
UpdateContext({ value: "The" });
UpdateContext({ value: "Else" });
UpdateContext({ value: "?" });
);
The text was updated successfully, but these errors were encountered:
The auto formatting for if else statements does not handle commas in a way that makes it easy to see that there is an else. For example
Can we update it so that the formating works as follows.
The text was updated successfully, but these errors were encountered: