Skip to content

Commit f52666a

Browse files
committed
Link and remove readme
1 parent 6a0402f commit f52666a

File tree

16 files changed

+37
-112
lines changed

16 files changed

+37
-112
lines changed

frontend/README.md

Lines changed: 0 additions & 75 deletions
This file was deleted.

frontend/components/CategoryCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
const {
3333
category,
3434
categoryIndex,
35-
} = defineProps<{ category: Category, categoryIndex: number }>();
35+
} = defineProps<{ category: Category, categoryIndex: number }>()
3636
3737
const route = useRoute()
3838

frontend/components/HeaderBar.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ const {
8080
subheaderTabs,
8181
subheaderTabSelection,
8282
} = defineProps<{
83-
subheaderTitle?: string|null,
84-
enableSubheader?: Boolean|null,
85-
subheaderTabs?: Array<HeaderTab>|Readonly<Array<HeaderTab>>|null,
86-
subheaderTabSelection?: string|null,
87-
}>();
83+
subheaderTitle?: string | null
84+
enableSubheader?: boolean | null
85+
subheaderTabs?: Array<HeaderTab> | Readonly<Array<HeaderTab>> | null
86+
subheaderTabSelection?: string | null
87+
}>()
8888
8989
const headers = [{ id: 0 }, { id: 1, spacer: true }]
9090
</script>

frontend/components/HomePage.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ const {
6868
categories,
6969
recentReleases,
7070
} = defineProps<{
71-
platform?: string|null,
72-
categories?: Array<Category>|null,
73-
recentReleases?: Array<RepoRelease>|null,
71+
platform?: string | null
72+
categories?: Array<Category> | null
73+
recentReleases?: Array<RepoRelease> | null
7474
}>()
7575
7676
function isSectionVisible(section: string) {

frontend/components/LogoCircle.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ const {
1919
projectIndex,
2020
categoryIndex,
2121
} = defineProps<{
22-
project: ProjectConfig,
23-
projectIndex: number,
24-
categoryIndex: number,
22+
project: ProjectConfig
23+
projectIndex: number
24+
categoryIndex: number
2525
}>()
2626
2727
const colors = [

frontend/components/Project/Buttons/Repo.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ const {
3434
info,
3535
projectConfig,
3636
} = defineProps<{
37-
info: ProjectInfo,
38-
projectConfig: ProjectConfig,
37+
info: ProjectInfo
38+
projectConfig: ProjectConfig
3939
}>()
4040
4141
const showCloneCmd = false // TODO: Needed?

frontend/components/Project/Detail.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ const {
5353
subpageId,
5454
pageTitle,
5555
} = defineProps<{
56-
projectConfig: ProjectConfig|Readonly<ProjectConfig>,
57-
projectContent: PageContent|Readonly<PageContent>,
58-
env?: string|null,
59-
subpageId?: string|null,
60-
pageTitle: string,
56+
projectConfig: ProjectConfig | Readonly<ProjectConfig>
57+
projectContent: PageContent | Readonly<PageContent>
58+
env?: string | null
59+
subpageId?: string | null
60+
pageTitle: string
6161
}>()
6262
6363
useHead({

frontend/components/Project/Footer.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ const {
2222
info,
2323
projectConfig,
2424
} = defineProps<{
25-
info: ProjectInfo,
26-
projectConfig: ProjectConfig,
25+
info: ProjectInfo
26+
projectConfig: ProjectConfig
2727
}>()
2828
const lastFetchedFromNow = formatDistanceToNow(projectConfig.last_fetched)
2929
</script>

frontend/components/Project/Preview.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ const {
3434
projectIndex,
3535
categoryIndex,
3636
} = defineProps<{
37-
project: ProjectConfig,
38-
projectIndex: number,
39-
categoryIndex: number,
37+
project: ProjectConfig
38+
projectIndex: number
39+
categoryIndex: number
4040
}>()
4141
4242
// TODO extract into util

frontend/components/Project/Sidebar.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ const {
3939
projectConfig,
4040
projectPath,
4141
} = defineProps<{
42-
projectConfig: ProjectConfig,
43-
projectPath: string,
42+
projectConfig: ProjectConfig
43+
projectPath: string
4444
}>()
4545
4646
function getSidebarData() {

0 commit comments

Comments
 (0)