Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.

Commit 460abc2

Browse files
darkwingjasonLaster
authored andcommitted
Allow submission of edited expression even if it doesn't change (#5922)
1 parent 7856be1 commit 460abc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/actions/expressions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export function clearExpressionError() {
5656

5757
export function updateExpression(input: string, expression: Expression) {
5858
return async ({ dispatch, getState }: ThunkArgs) => {
59-
if (!input || input == expression.input) {
59+
if (!input) {
6060
return;
6161
}
6262

0 commit comments

Comments
 (0)