pop-up overlay issue fixed on the nominator table

Signed-off-by: Uncle Stinky <uncle.stinky@ghostchain.io>
This commit is contained in:
Uncle Stinky 2025-04-24 19:42:09 +03:00
parent 0af68ca624
commit 987d8e544d
Signed by: st1nky
GPG Key ID: 016064BD97603B40
2 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,7 @@
name = "ghost-eye"
authors = ["str3tch <stretch@ghostchain.io>"]
description = "Application for interacting with Casper/Ghost nodes that are exposing RPC only to the localhost"
version = "0.3.53"
version = "0.3.54"
edition = "2021"
homepage = "https://git.ghostchain.io/ghostchain"
repository = "https://git.ghostchain.io/ghostchain/ghost-eye"

View File

@ -2,6 +2,7 @@ use std::sync::mpsc::Sender;
use color_eyre::Result;
use ratatui::{
widgets::Clear,
layout::{Alignment, Constraint, Rect},
text::Text,
widgets::{Block, Cell, Row, Table},
@ -215,6 +216,7 @@ impl Component for CurrentValidatorDetails {
.title_style(self.palette.create_title_style(false))
.title("Validator details"));
frame.render_widget(Clear, place);
frame.render_widget(table, place);
}