We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Eel expression doesn't work on the props tab
The eel expression get interpreted
Given AFX
<p>{Array.join(props.array, ' || ')}</p> <p>{props.eel}</p> <p>{props.nested}</p>
and given props:
array: - one - two - three eel: ${Array.join(['one', 'two', 'three'], ' || ')} nested: ${Array.join(this.array, ' || ')}
Output should be
<p>one || two || three</p> <p>one || two || three</p> <p>one || two || three</p>
but is
<p>one || two || three</p> <p>${Array.join(['one', 'two', 'three'], ' || ')}</p> <p>${Array.join(this.array, ' || ')}</p>
2.0.0 and 1.0.0
PHP 8.1.23 (cli) (built: Oct 6 2023 10:11:51) (NTS) Copyright (c) The PHP Group Zend Engine v4.1.23, Copyright (c) Zend Technologies with Zend OPcache v8.1.23, Copyright (c), by Zend Technologies
The text was updated successfully, but these errors were encountered:
davidspiola
No branches or pull requests
Describe the bug
Eel expression doesn't work on the props tab
Expected behaviour
The eel expression get interpreted
Steps to reproduce
Given AFX
and given props:
Output should be
but is
Version
2.0.0 and 1.0.0
PHP version
The text was updated successfully, but these errors were encountered: