Fix error formatting
This commit is contained in:
parent
7bb3c7e5e3
commit
67eaad2819
1 changed files with 2 additions and 2 deletions
|
|
@ -96,7 +96,7 @@ const categoriesSelectorCss = categories
|
||||||
(c) => `
|
(c) => `
|
||||||
#category-picker:has(#${c}:checked) ~ main ul {
|
#category-picker:has(#${c}:checked) ~ main ul {
|
||||||
> .${c}-item {
|
> .${c}-item {
|
||||||
display: flex;
|
display: block;
|
||||||
}
|
}
|
||||||
> *:not(.${c}-item) {
|
> *:not(.${c}-item) {
|
||||||
display: none;
|
display: none;
|
||||||
|
|
@ -217,7 +217,7 @@ const categoriesSelectorCss = categories
|
||||||
) : (
|
) : (
|
||||||
<ul>
|
<ul>
|
||||||
{feedItems.errors.map((error) => (
|
{feedItems.errors.map((error) => (
|
||||||
<li>{error}</li>
|
<li class="break-words">{error}</li>
|
||||||
))}
|
))}
|
||||||
</ul>
|
</ul>
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue