You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1 - Set up mysql db with docker run -p 3306:3306 -e MYSQL_ROOT_PASSWORD=password mysql:8
2 - Open sqlectron and connect to it
3 - Click on the mysql db, then the db table
4 - Edit the auto-generated query from LIMIT 100 to LIMIT 2 to confirm the editor works and run it
5 - Try to change LIMIT 2 to LIMIT 1
You should fail to input text although the backspace does work.
After clicking discard the editor does come back to normal.
The text was updated successfully, but these errors were encountered:
I noticed that too recently but forgot to open a ticket for it, so thanks for reporting it.
While we don't have a proper fixing for it, the workaround I have been using is clicking on the tab title, it seems to unlock the text editor after that.
You can continue edit , if you click anywhere outside input area, for example in result rows , and then click/focus on input again.
This is definately a bug, but i think it has relation with focus , something is block edit..
After executing a query, the editor becomes irresponsive for inputting text, somehow the backspace does work:
Environment
docker run -p 3306:3306 -e MYSQL_ROOT_PASSWORD=password mysql:8
)Steps to reproduce:
1 - Set up mysql db with
docker run -p 3306:3306 -e MYSQL_ROOT_PASSWORD=password mysql:8
2 - Open sqlectron and connect to it
3 - Click on the
mysql
db, then thedb
table4 - Edit the auto-generated query from
LIMIT 100
toLIMIT 2
to confirm the editor works and run it5 - Try to change
LIMIT 2
toLIMIT 1
You should fail to input text although the backspace does work.
After clicking
discard
the editor does come back to normal.The text was updated successfully, but these errors were encountered: