discourse/app/assets/javascripts/admin/addon/components/plugin-commit-hash.hbs
Vinoth Kannan 52894b9d7c
FEATURE: display commit hash for each plugin on /admin/plugins page. (#22176)
It will help to find out the current version of the plugins even without the `docker_manager` plugin.
2023-06-26 10:09:57 +05:30

7 lines
166 B
Handlebars

{{#if this.commitHash}}
<a
href={{this.plugin.commit_url}}
class="current commit-hash"
title={{this.commitHash}}
>{{this.shortCommitHash}}</a>
{{/if}}