mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:23:13 +08:00
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;
|
||
|
}
|
||
|
}
|