Skip to content

Commit

Permalink
[WIP] Messages refactoring.
Browse files Browse the repository at this point in the history
  - HOTFIX: send message dialog on Windows, not showing selected
  partition on adw::ComboRow.
  • Loading branch information
Miguel Aranha Baldi Horlle committed Apr 30, 2024
1 parent 03ab1ee commit d69256a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/backend/kafka.rs
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,8 @@ impl KafkaBackend {
.collect::<Vec<_>>();
// This loop will wait until all delivery statuses have been received.
for future in messages_futures {
info!("Future completed. Result: {:?}", future.await);
let result = future.await;
info!("Future completed. Result: {:?}", result);
}
}

Expand Down
1 change: 1 addition & 0 deletions src/component/messages/messages_send_dialog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ impl Component for MessagesSendDialogModel {
partitions_combo -> adw::ComboRow {
set_title: "Partition",
set_subtitle: "Select target topic partition",
set_use_subtitle: true,
},
#[name(toggle_multiple_messages)]
adw::SwitchRow {
Expand Down

0 comments on commit d69256a

Please sign in to comment.