Skip to content
New issue

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 #1007

Open
zachliu opened this issue May 26, 2020 · 1 comment

Comments

@zachliu
Copy link

zachliu commented May 26, 2020

Issue Summary

Mousing over table names shows “{{item.name}}” instead of the table name

Steps to Reproduce

  1. Mouse over any table in the schema list
  2. Then you see the incorrect infotip "{{item.name}}".

Technical details:

  • Redash Version: m28
  • Browser/OS: Chrome 83.0.4103.61/Linux mint
  • How did you install Redash:
@zachliu
Copy link
Author

zachliu commented May 27, 2020

Found the 🐛! This line

<span title="{{item.name}}">{item.name}</span>

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant