diff options
| author | Simon Rettberg | 2025-07-02 14:09:06 +0200 |
|---|---|---|
| committer | Simon Rettberg | 2025-07-02 14:09:06 +0200 |
| commit | a40fc33ffcd7da08ac30568fd2cca79e143eda78 (patch) | |
| tree | 8f1eb01c0aae94580c2fbfc314fb763de9112cfc /dozentenmodul/src | |
| parent | [server] Add filepath to ImageVersionDetails (diff) | |
| download | tutor-module-a40fc33ffcd7da08ac30568fd2cca79e143eda78.tar.gz tutor-module-a40fc33ffcd7da08ac30568fd2cca79e143eda78.tar.xz tutor-module-a40fc33ffcd7da08ac30568fd2cca79e143eda78.zip | |
[client] Fix NPE
Diffstat (limited to 'dozentenmodul/src')
| -rw-r--r-- | dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ImageDetailsWindow.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ImageDetailsWindow.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ImageDetailsWindow.java index 93c1e630..823c3712 100644 --- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ImageDetailsWindow.java +++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ImageDetailsWindow.java @@ -824,7 +824,7 @@ public class ImageDetailsWindow extends ImageDetailsWindowLayout // If this Image is from type Docker (Container) show the new Container Tab - if (image != null && image.getVirtId().equals(TConst.VIRT_DOCKER)) { + if (image != null && TConst.VIRT_DOCKER.equals(image.getVirtId())) { lblVirtualizer.setText(TConst.VIRT_DOCKER); pnlTabContainer.init(Session.getSatelliteToken(), image, ContainerPanel.IMAGE_CONTEXT); pnlTabContainer.addToChangeMonitor(changeMonitor); |
