mirror of
https://git.proxmox.com/git/pve-common
synced 2025-08-05 00:46:24 +00:00
pod: skip aliases in generate_property_text
These are special and have no other properties to access.
This commit is contained in:
parent
b249031c64
commit
5a917b429a
@ -125,6 +125,7 @@ sub generate_property_text {
|
||||
my $data = '';
|
||||
foreach my $key (sort keys %$schema) {
|
||||
my $d = $schema->{$key};
|
||||
next if $d->{alias};
|
||||
my $desc = $d->{description};
|
||||
my $typetext = schema_get_type_text($d);
|
||||
$desc = 'No description available' if !$desc;
|
||||
|
Loading…
Reference in New Issue
Block a user