Skip to content

Commit

Permalink
fix: distribution info formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Mathis Mensing <github@matmen.dev>
  • Loading branch information
matmen committed Mar 18, 2024
1 parent 4d76edb commit b35f6be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/widgets/system/SystemOverviewCard.vue
Expand Up @@ -143,6 +143,7 @@ export default class PrinterStatsCard extends Mixins(StateMixin) {
}
get distributionName (): string | undefined {
console.log(this.distribution)
const { name, id } = this.distribution
if (name) {
Expand All @@ -154,7 +155,7 @@ export default class PrinterStatsCard extends Mixins(StateMixin) {
name.startsWith('#')
? id
: name
)} ${this.distribution.release_info?.version_id} ?? ''`
)} ${this.distribution.release_info?.version_id ?? ''}`
}
}
Expand Down

0 comments on commit b35f6be

Please sign in to comment.