1
0
Fork 0

FieldVisibilityEventHandler: Fix arrow function notation

This was a syntax recognized back in the day.
master
Mike Gerwitz 2019-09-04 15:59:27 -04:00
parent 20ddff0f6e
commit 4f8aa3c90b
1 changed files with 1 additions and 1 deletions

View File

@ -141,6 +141,6 @@ function createMockStepUi( expected_name, showf, hidef )
function createStubDataProvider( fail_callback )
{
return {
clearFailures: fail_callback || () => {},
clearFailures: fail_callback || ( () => {} ),
};
}