Skip to content

Commit

Permalink
fix: only use first 8 characters from SHA
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelRauber committed Mar 11, 2024
1 parent 5b2943c commit 4ba1600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/sidebar/sidebar.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
{{ version.version }}

@if (version.sha) {
<span class="text-xs font-extralight text-gray-400">{{ version.sha }}</span>
<span class="text-xs font-extralight text-gray-400">{{ version.sha.substring(0, 8) }}</span>
}
}
</a>
Expand Down

0 comments on commit 4ba1600

Please sign in to comment.