mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Fix empty descriptions rendering bad
This commit is contained in:
parent
e026f470fe
commit
6fc7762530
@ -60,7 +60,7 @@ const HeadingTag = levelMap[level] ?? "h6";
|
||||
</div>
|
||||
)
|
||||
}
|
||||
{description && <p>{description}</p>}
|
||||
{description ? <p>{description}</p> : <p>No Description Found</p>}
|
||||
{
|
||||
enumVals.length !== 0 && (
|
||||
<>
|
||||
@ -160,6 +160,7 @@ const HeadingTag = levelMap[level] ?? "h6";
|
||||
|
||||
div.tool-links {
|
||||
display: flex;
|
||||
gap: .5rem;
|
||||
}
|
||||
|
||||
span {
|
||||
|
||||
@ -10,7 +10,7 @@ These values can be used to set the sound for slide reels, signals, audio volume
|
||||
Ignore the numbers, just take the name.
|
||||
|
||||
| **Name** | **Value** |
|
||||
|:----------------------------------------------:|:---------:|
|
||||
| :--------------------------------------------: | :-------: |
|
||||
| None | 0 |
|
||||
| Menu_RebindKey | 1 |
|
||||
| Menu_ResetDefaults | 2 |
|
||||
@ -768,4 +768,3 @@ Ignore the numbers, just take the name.
|
||||
## AudioClip values
|
||||
|
||||
This is a list of AudioClips that will also work, there's a lot of overlap with the AudioType list. Many old addons with signals use values from this list.
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user