Skip to content

Commit

Permalink
fix: connection status #482
Browse files Browse the repository at this point in the history
  • Loading branch information
WDaan committed Sep 10, 2022
1 parent e352de0 commit e047467
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Navbar/ConnectionStatus.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</div>
</template>

<span>{{ status || $t('unknown') }}</span>
<span>{{ (status || $t('unknown')) | titleCase }}</span>
</v-tooltip>
</template>

Expand Down
2 changes: 1 addition & 1 deletion src/components/Navbar/NavbarActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</v-tooltip>
</v-col>
<v-col>
<connection-status :status="connectionStatus | titleCase" />
<connection-status :status="connectionStatus" />
</v-col>
<v-col>
<v-tooltip top>
Expand Down

0 comments on commit e047467

Please sign in to comment.