Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions application/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
FailedDockerClient,
NoVisibleContainers,
)
from application.messages import ClickedContainer, ContainersAndImagesExpaned
from application.messages import ClickedContainer, ContainersAndImagesExpanded
from application.util.config import CONFIG_PATH, load_config
from application.util.helper import (
get_current_version,
Expand Down Expand Up @@ -421,7 +421,7 @@ def action_toggle_containers_images_full_screen(self):
child.add_class("expanded-container")

self.query_one(PockerContainers)._containers_and_images_maximized = True
self.post_message(ContainersAndImagesExpaned())
self.post_message(ContainersAndImagesExpanded())
else:
content_window.styles.display = "block"
containers_and_images.styles.width = "20%"
Expand Down Expand Up @@ -548,7 +548,7 @@ def update(force):
read_changelog(current_version)
return

print("An error occured!")
print("An error occurred!")
print("STDOUT: ", result.stdout)
print("STDERR: ", result.stderr)

Expand Down
2 changes: 1 addition & 1 deletion application/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


@dataclass
class ContainersAndImagesExpaned(Message, bubble=True):
class ContainersAndImagesExpanded(Message, bubble=True):
pass


Expand Down