mirror of
https://github.com/zen-browser/www.git
synced 2025-07-08 17:30:01 +02:00
fix: allow opening multiple accordions of the same name
This commit is contained in:
parent
f06787c23b
commit
23c3ddb078
1 changed files with 4 additions and 4 deletions
|
@ -93,7 +93,7 @@ if (props.date) {
|
||||||
<Accordion>
|
<Accordion>
|
||||||
{
|
{
|
||||||
props.fixes ? (
|
props.fixes ? (
|
||||||
<AccordionItem title="Fixes" name="fixes">
|
<AccordionItem title="Fixes">
|
||||||
<ul class="list-inside list-disc">
|
<ul class="list-inside list-disc">
|
||||||
{props.fixes.map((fix: any) => (
|
{props.fixes.map((fix: any) => (
|
||||||
<li class="text-md text-muted-foreground">
|
<li class="text-md text-muted-foreground">
|
||||||
|
@ -123,7 +123,7 @@ if (props.date) {
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
props.features ? (
|
props.features ? (
|
||||||
<AccordionItem title="Features" name="features">
|
<AccordionItem title="Features">
|
||||||
<ul class="list-inside list-disc">
|
<ul class="list-inside list-disc">
|
||||||
{props.features.map((feature: string) => (
|
{props.features.map((feature: string) => (
|
||||||
<li class="text-md text-muted-foreground">{feature}</li>
|
<li class="text-md text-muted-foreground">{feature}</li>
|
||||||
|
@ -134,7 +134,7 @@ if (props.date) {
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
props.themeChanges ? (
|
props.themeChanges ? (
|
||||||
<AccordionItem title="Theme Changes" name="themeChanges">
|
<AccordionItem title="Theme Changes">
|
||||||
<ul class="list-inside list-disc">
|
<ul class="list-inside list-disc">
|
||||||
{props.themeChanges.map((themeChange: string) => (
|
{props.themeChanges.map((themeChange: string) => (
|
||||||
<li class="text-md text-muted-foreground">{themeChange}</li>
|
<li class="text-md text-muted-foreground">{themeChange}</li>
|
||||||
|
@ -145,7 +145,7 @@ if (props.date) {
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
props.breakingChanges ? (
|
props.breakingChanges ? (
|
||||||
<AccordionItem title="Breaking Changes" name="breakingChanges">
|
<AccordionItem title="Breaking Changes">
|
||||||
<ul class="list-inside list-disc">
|
<ul class="list-inside list-disc">
|
||||||
{props.breakingChanges.map((breakingChange: BreakingChange) => (
|
{props.breakingChanges.map((breakingChange: BreakingChange) => (
|
||||||
<li class="text-md text-muted-foreground">
|
<li class="text-md text-muted-foreground">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue