mirror of
https://git.proxmox.com/git/pve-common
synced 2025-08-08 12:43:58 +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 = '';
|
my $data = '';
|
||||||
foreach my $key (sort keys %$schema) {
|
foreach my $key (sort keys %$schema) {
|
||||||
my $d = $schema->{$key};
|
my $d = $schema->{$key};
|
||||||
|
next if $d->{alias};
|
||||||
my $desc = $d->{description};
|
my $desc = $d->{description};
|
||||||
my $typetext = schema_get_type_text($d);
|
my $typetext = schema_get_type_text($d);
|
||||||
$desc = 'No description available' if !$desc;
|
$desc = 'No description available' if !$desc;
|
||||||
|
Loading…
Reference in New Issue
Block a user