mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-21 14:24:06 +01:00
Add prompt text for filter textfield
This commit is contained in:
parent
c25c1ca82b
commit
ca0387ad5b
2 changed files with 2 additions and 0 deletions
|
@ -802,6 +802,7 @@ support.tab.support=Support tickets
|
|||
support.tab.ArbitratorsSupportTickets=Arbitrator's support tickets
|
||||
support.tab.TradersSupportTickets=Trader's support tickets
|
||||
support.filter=Filter list
|
||||
support.filter.prompt=Enter trade ID, date, onion address or account data
|
||||
support.noTickets=There are no open tickets
|
||||
support.sendingMessage=Sending Message...
|
||||
support.receiverNotOnline=Receiver is not online. Message is saved to his mailbox.
|
||||
|
|
|
@ -199,6 +199,7 @@ public class ClosedTradesView extends ActivatableViewAndModel<VBox, ClosedTrades
|
|||
tableView.getSortOrder().add(dateColumn);
|
||||
|
||||
filterLabel.setText(Res.getWithCol("support.filter"));
|
||||
filterTextField.setPromptText(Res.get("support.filter.prompt"));
|
||||
HBox.setMargin(filterLabel, new Insets(5, 0, 0, 10));
|
||||
filterTextFieldListener = (observable, oldValue, newValue) -> applyFilteredListPredicate(filterTextField.getText());
|
||||
footerBox.setSpacing(5);
|
||||
|
|
Loading…
Add table
Reference in a new issue