Open
Description
Is there an existing issue for this?
- I have searched the existing issues
OS/Web Information
- Web Browser: Firefox
- Local OS: Win11
- Remote OS: Ubuntu 24.04
- Remote Architecture: amd64
code-server --version
: 4.98.2
Steps to Reproduce
- Install SQLTools + SQLTools MySQL/MariaDB/...
- Go to SQLTools
- Click on "Add New Connection"
- Opens a new "view/window" but it's copmpletely blank
Expected
Options for adding a new database connection should appear
Actual
Nothing.
Logs
Screenshot/Video
Grabacion.2025-04-06.030023.mp4
Does this bug reproduce in native VS Code?
I did not test native VS Code
Does this bug reproduce in GitHub Codespaces?
I did not test GitHub Codespaces
Are you accessing code-server over a secure context?
- I am using a secure context.
Notes
I've tried adding a database connection in settings.json. However, whenever I execute a query it returns again a blank page.
This is my compose file:
---
services:
code-server:
image: ghcr.io/linuxserver/code-server:4.98.2
container_name: code-server
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
- PASSWORD=123 #optional
- HASHED_PASSWORD= #optional
- SUDO_PASSWORD=123 #optional
- SUDO_PASSWORD_HASH= #optional
- PROXY_DOMAIN=code-server.my.domain #optional
- DEFAULT_WORKSPACE=/workspace #optional
volumes:
- ./config:/config
- ./workspace:/workspace
#ports:
#- 8443:8443
restart: unless-stopped
networks:
- starrnet
networks:
starrnet:
external: true