coleifer / sqlite-web

Web-based SQLite database browser written in Python
MIT License
3.35k stars 331 forks source link

Long table names cause layout issues #129

Closed JCWasmx86 closed 1 year ago

JCWasmx86 commented 1 year ago

Installed using pip

Reproduce:

$ cd /tmp/
$ sqlite3 abc.db
> CREATE TABLE machine_generated_prefix_some_stuff_some_very_long_suffix(a, int);
> .exit
$ sqlite_web abc.db

image

image

Maybe it would be possible to add ellipsis to long table names?

JCWasmx86 commented 1 year ago

Thanks a lot for that quick fix!