Skip to content

Commit

Permalink
Show plugin id in settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Exidex committed Oct 8, 2024
1 parent 07aeea6 commit 6781a65
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions rust/management_client/src/views/plugins.rs
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,17 @@ impl ManagementAppPluginsState {
.padding(Padding::new(8.0))
.into();

let id: Element<_> = text(&plugin.plugin_id.to_string())
.style(TextStyle::Subtitle)
.into();

let id = container(id)
.padding(Padding::from([0.0, 8.0, 8.0, 8.0]))
.into();

let mut column_content = vec![
name,
id,
];

if !plugin.plugin_description.is_empty() {
Expand Down

0 comments on commit 6781a65

Please sign in to comment.