Skip to content
This repository has been archived by the owner on Jun 23, 2024. It is now read-only.

Commit

Permalink
Change casing of properties
Browse files Browse the repository at this point in the history
  • Loading branch information
screendriver committed Jun 14, 2024
1 parent e3ceb47 commit 4878cb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/statistics/GitHubRepositories.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const { isFetching, gitHubStatistics } = defineProps<Properties>();
<template>
<Figure description="GitHub Repos">
<LoadingSpinner v-if="isFetching" />
<Cite v-if="!isFetching" aria-label="GitHub Repos">
<Cite v-if="!isFetching" ariaLabel="GitHub Repos">
{{ gitHubStatistics.get("user").get("repositories").get("totalCount").unwrapOr(0) }}
</Cite>
</Figure>
Expand Down
2 changes: 1 addition & 1 deletion source/statistics/YearsInBusiness.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ const { yearsOfExperience } = defineProps<Properties>();

<template>
<Figure description="Experience">
<Cite aria-label="Years of experience">{{ yearsOfExperience }} yrs</Cite>
<Cite ariaLabel="Years of experience">{{ yearsOfExperience }} yrs</Cite>
</Figure>
</template>

0 comments on commit 4878cb7

Please sign in to comment.