If the plugin was previously using HTML table tags to align the content of input forms, then it will likely contain conditional code that detects div-based layout and uses div tags instead of table tags on newer versions of Jenkins. When the base Jenkins version is 2.277.1 or later, the conditional for table based layout can be removed, since all layout is done with div tags beginning with 2.277.1. Search the Jelly files in the plugin for divBasedFormLayout to find conditionals that can be removed.
If the plugin was previously using HTML table tags to align the content of input forms, then it will likely contain conditional code that detects
div
-based layout and usesdiv
tags instead of table tags on newer versions of Jenkins. When the base Jenkins version is 2.277.1 or later, the conditional for table based layout can be removed, since all layout is done withdiv
tags beginning with 2.277.1. Search the Jelly files in the plugin fordivBasedFormLayout
to find conditionals that can be removed.