summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Aistleitner <christian@quelltextlich.at>2020-05-31 11:21:05 +0200
committerChristian Aistleitner <christian@quelltextlich.at>2020-07-03 13:57:59 +0200
commit76ef7674bad825b6134d8dff41ebbc5bf36de203 (patch)
tree33c7e812b5bd51cfcb85d33d74783dc584948f58
parent99dd23233420e6c9bf919990b42a572111cf44fb (diff)
Add Api version to plugin list in PolyGerrit UI
-rw-r--r--polygerrit-ui/app/elements/admin/gr-plugin-list/gr-plugin-list.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/polygerrit-ui/app/elements/admin/gr-plugin-list/gr-plugin-list.html b/polygerrit-ui/app/elements/admin/gr-plugin-list/gr-plugin-list.html
index 9e4396afa3..ef1c3f7c56 100644
--- a/polygerrit-ui/app/elements/admin/gr-plugin-list/gr-plugin-list.html
+++ b/polygerrit-ui/app/elements/admin/gr-plugin-list/gr-plugin-list.html
@@ -37,6 +37,7 @@ limitations under the License.
<tr class="headerRow">
<th class="name topHeader">Plugin Name</th>
<th class="version topHeader">Version</th>
+ <th class="apiVersion topHeader">API Version</th>
<th class="status topHeader">Status</th>
</tr>
<tr id="loading" class$="loadingMsg [[computeLoadingClass(_loading)]]">
@@ -54,6 +55,7 @@ limitations under the License.
</template>
</td>
<td class="version">[[item.version]]</td>
+ <td class="apiVersion">[[item.api_version]]</td>
<td class="status">[[_status(item)]]</td>
</tr>
</template>