@jjlmoya/utils-health 1.13.0 → 1.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/pages/[locale]/[slug].astro +1 -1
- package/src/tool/binauralTuner/bibliography.astro +1 -1
- package/src/tool/bloodUnitConverter/bibliography.astro +1 -1
- package/src/tool/bmiCalculator/bibliography.astro +1 -1
- package/src/tool/breathingVisualizer/bibliography.astro +1 -1
- package/src/tool/caffeineTracker/bibliography.astro +1 -1
- package/src/tool/daltonismSimulator/bibliography.astro +1 -1
- package/src/tool/digestionStopwatch/bibliography.astro +1 -1
- package/src/tool/epworthSleepinessScale/bibliography.astro +1 -1
- package/src/tool/hydrationCalculator/bibliography.astro +1 -1
- package/src/tool/pelliRobsonTest/bibliography.astro +1 -1
- package/src/tool/peripheralVisionTrainer/bibliography.astro +1 -1
- package/src/tool/readingDistanceCalculator/bibliography.astro +1 -1
- package/src/tool/screenDecompressionTime/bibliography.astro +1 -1
- package/src/tool/tinnitusReliever/bibliography.astro +1 -1
- package/src/tool/ubeCalculator/bibliography.astro +1 -1
- package/src/tool/waterPurifier/bibliography.astro +1 -1
package/package.json
CHANGED
|
@@ -136,7 +136,7 @@ const titleBase = words.slice(1).join(" ") || "";
|
|
|
136
136
|
</section>
|
|
137
137
|
|
|
138
138
|
<section class="section-bibliography">
|
|
139
|
-
<Bibliography links={content.bibliography}
|
|
139
|
+
<Bibliography links={content.bibliography} />
|
|
140
140
|
</section>
|
|
141
141
|
</div>
|
|
142
142
|
</PreviewLayout>
|
|
@@ -11,4 +11,4 @@ const { locale = 'es' } = Astro.props;
|
|
|
11
11
|
const content = await breathingVisualizer.i18n[locale]?.();
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
-
{content && <Bibliography
|
|
14
|
+
{content && <Bibliography links={content.bibliography} />}
|
|
@@ -11,4 +11,4 @@ const { locale = 'es' } = Astro.props;
|
|
|
11
11
|
const content = await epworthSleepinessScale.i18n[locale]?.();
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
-
{content && <Bibliography
|
|
14
|
+
{content && <Bibliography links={content.bibliography} />}
|
|
@@ -11,4 +11,4 @@ const { locale = 'es' } = Astro.props;
|
|
|
11
11
|
const content = await hydrationCalculator.i18n[locale]?.();
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
-
{content && <Bibliography
|
|
14
|
+
{content && <Bibliography links={content.bibliography} />}
|
|
@@ -11,4 +11,4 @@ const { locale = 'es' } = Astro.props;
|
|
|
11
11
|
const content = await peripheralVisionTrainer.i18n[locale]?.();
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
-
{content && <Bibliography
|
|
14
|
+
{content && <Bibliography links={content.bibliography} />}
|
|
@@ -11,4 +11,4 @@ const { locale = 'es' } = Astro.props;
|
|
|
11
11
|
const content = await readingDistanceCalculator.i18n[locale]?.();
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
-
{content && <Bibliography
|
|
14
|
+
{content && <Bibliography links={content.bibliography} />}
|
|
@@ -11,4 +11,4 @@ const { locale = 'es' } = Astro.props;
|
|
|
11
11
|
const content = await screenDecompressionTime.i18n[locale]?.();
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
-
{content && <Bibliography
|
|
14
|
+
{content && <Bibliography links={content.bibliography} />}
|