mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
52894b9d7c
It will help to find out the current version of the plugins even without the `docker_manager` plugin.
12 lines
243 B
JavaScript
12 lines
243 B
JavaScript
import Component from "@glimmer/component";
|
|
|
|
export default class PluginCommitHash extends Component {
|
|
get shortCommitHash() {
|
|
return this.commitHash?.slice(0, 7);
|
|
}
|
|
|
|
get commitHash() {
|
|
return this.args.plugin.commit_hash;
|
|
}
|
|
}
|