Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nico
BMBF 2
Commits
33f0dc18
Verified
Commit
33f0dc18
authored
2 years ago
by
Nico
Browse files
Options
Download
Email Patches
Plain Diff
feat(mod-card): show porter on card
parent
fbb97e7d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
BMBF.Frontend/src/components/ModCard.tsx
+7
-7
BMBF.Frontend/src/components/ModCard.tsx
with
7 additions
and
7 deletions
+7
-7
BMBF.Frontend/src/components/ModCard.tsx
+
7
-
7
View file @
33f0dc18
...
...
@@ -52,12 +52,6 @@ function SongCard({ mod }: ModCardProps) {
<
Title
order
=
{
4
}
>
Description
</
Title
>
<
Text
>
{
mod
.
description
}
</
Text
>
</
Stack
>
{
mod
.
porter
&&
(
<
Stack
spacing
=
{
1
}
>
<
Title
order
=
{
4
}
>
Porter
</
Title
>
<
Text
>
{
mod
.
porter
}
</
Text
>
</
Stack
>
)
}
<
Stack
spacing
=
{
1
}
>
<
Title
order
=
{
4
}
>
Dependencies
</
Title
>
{
dependencies
.
length
?
(
...
...
@@ -163,7 +157,13 @@ function SongCard({ mod }: ModCardProps) {
<
Text
size
=
"xl"
>
{
mod
.
name
}
<
Badge
size
=
"xs"
>
{
mod
.
version
}
</
Badge
>
</
Text
>
<
Text
>
Created by
{
mod
.
author
}
</
Text
>
{
mod
.
porter
?
(
<
Text
>
Ported by
{
mod
.
porter
}
, original mod by
{
mod
.
author
}
</
Text
>
)
:
(
<
Text
>
Created by
{
mod
.
author
}
</
Text
>
)
}
</
Stack
>
<
Group
>
<
Switch
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help