Skip to content
Snippets Groups Projects
Unverified Commit 65e76a39 authored by Gustavo Saiani's avatar Gustavo Saiani Committed by GitHub
Browse files

Close Custom Expression Helper after blurring (#16541)

parent a4bcdb20
No related branches found
No related tags found
No related merge requests found
......@@ -239,7 +239,10 @@ export default class ExpressionEditorTextfield extends React.Component {
onInputBlur = () => {
this.clearSuggestions();
const { compileError } = this.state;
this.setState({ displayCompileError: compileError });
this.setState({
displayCompileError: compileError,
helpText: null,
});
// whenever our input blurs we push the updated expression to our parent if valid
if (this.state.expression) {
......
......@@ -539,7 +539,7 @@ describe("scenarios > question > custom columns", () => {
cy.findByPlaceholderText("Enter a number").should("not.exist");
});
it.skip("custom expression helper shouldn't be visible when formula field is not in focus (metabase#15891)", () => {
it("custom expression helper shouldn't be visible when formula field is not in focus (metabase#15891)", () => {
openPeopleTable({ mode: "notebook" });
cy.findByText("Custom column").click();
popover().within(() => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment