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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mousing over table names shows “{{item.name}}” instead of the table name
The text was updated successfully, but these errors were encountered:
Found the 🐛! This line
redash/client/app/pages/queries/components/SchemaBrowser.jsx
Line 53 in 1d31c63
should be
<span title={`${item.name}`}>{item.name}</span>
or
<span title={item.name}>{item.name}</span>
depending on whether we want string interpolation or not
Sorry, something went wrong.
No branches or pull requests
Issue Summary
Mousing over table names shows “{{item.name}}” instead of the table name
Steps to Reproduce
Technical details:
The text was updated successfully, but these errors were encountered: