scroll bars added to validator and nominator tabs
Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
parent
5d73989a43
commit
a2584f8212
@ -179,6 +179,7 @@ impl CurrentValidators {
|
|||||||
let index = self.table_state
|
let index = self.table_state
|
||||||
.selected()
|
.selected()
|
||||||
.unwrap_or_default();
|
.unwrap_or_default();
|
||||||
|
self.scroll_state = self.scroll_state.content_length(self.individual.len());
|
||||||
self.scroll_state = self.scroll_state.position(index);
|
self.scroll_state = self.scroll_state.position(index);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -135,6 +135,7 @@ impl History {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
self.scroll_state = self.scroll_state.content_length(self.rewards.len());
|
||||||
}
|
}
|
||||||
|
|
||||||
fn update_claims(&mut self, era_index: u32, is_claimed: bool) {
|
fn update_claims(&mut self, era_index: u32, is_claimed: bool) {
|
||||||
@ -181,11 +182,7 @@ impl PartialComponent for History {
|
|||||||
fn set_active(&mut self, current_tab: CurrentTab) {
|
fn set_active(&mut self, current_tab: CurrentTab) {
|
||||||
match current_tab {
|
match current_tab {
|
||||||
CurrentTab::History => self.is_active = true,
|
CurrentTab::History => self.is_active = true,
|
||||||
_ => {
|
_ => self.is_active = false,
|
||||||
self.is_active = false;
|
|
||||||
//self.table_state.select(None);
|
|
||||||
//self.scroll_state = self.scroll_state.position(0);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -57,6 +57,7 @@ impl NominatorsByValidator {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
self.nominators = nominators;
|
self.nominators = nominators;
|
||||||
|
self.scroll_state = self.scroll_state.content_length(self.nominators.len());
|
||||||
}
|
}
|
||||||
|
|
||||||
fn first_row(&mut self) {
|
fn first_row(&mut self) {
|
||||||
|
@ -51,6 +51,7 @@ impl Peers {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
self.peers = peers;
|
self.peers = peers;
|
||||||
|
self.scroll_state = self.scroll_state.content_length(self.peers.len());
|
||||||
}
|
}
|
||||||
|
|
||||||
fn first_row(&mut self) {
|
fn first_row(&mut self) {
|
||||||
|
@ -103,6 +103,7 @@ impl Withdrawals {
|
|||||||
let _ = self.unlockings.insert(era_index, unlocking);
|
let _ = self.unlockings.insert(era_index, unlocking);
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
self.scroll_state = self.scroll_state.content_length(self.unlockings.len());
|
||||||
}
|
}
|
||||||
|
|
||||||
fn prepare_u128(&self, value: u128) -> String {
|
fn prepare_u128(&self, value: u128) -> String {
|
||||||
|
Loading…
Reference in New Issue
Block a user