feature: allow docker image text to overflow in table (#301)

* feature: allow docker image text to overflow in table

* review: use break-words

* wip: revert line break in css file

* feature: update devcontainer node release
This commit is contained in:
unsync
2025-02-11 09:00:09 +01:00
committed by mbecker20
parent 1cc967f215
commit c44313a9f1
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "18.18.0"
"version": "20.12.2"
},
"ghcr.io/devcontainers-community/features/deno:1": {

View File

@@ -677,7 +677,7 @@ export const DockerResourceLink = ({
<Icon server_id={server_id} name={type === "image" ? id : name} />
<div
title={name}
className="max-w-[200px] lg:max-w-[250px] overflow-hidden overflow-ellipsis"
className="max-w-[250px] lg:max-w-[300px] overflow-hidden overflow-ellipsis break-words"
>
{name}
</div>