update
This commit is contained in:
@@ -17,17 +17,17 @@ export default defineComponent({
|
||||
step: 0.1,
|
||||
},
|
||||
{
|
||||
name: "Armour, Natural Dessicated Thyroid",
|
||||
name: 'Natural Dessicated Thyroid ("Armour")',
|
||||
mpg: 60,
|
||||
unit: "mg",
|
||||
},
|
||||
{
|
||||
name: 'Liothyronine (Triiodothyronine, "Cytomel/Cynomel", T3)',
|
||||
name: 'Liothyronine (T3 - "Cytomel/Cynomel")',
|
||||
mpg: MPG_T3_SYN,
|
||||
unit: "mcg",
|
||||
},
|
||||
{
|
||||
name: "Levothyroxine (Thyroxine, T4)",
|
||||
name: "Levothyroxine (T4)",
|
||||
mpg: MPG_T4_SYN,
|
||||
unit: "mcg",
|
||||
},
|
||||
@@ -67,7 +67,7 @@ export default defineComponent({
|
||||
{inputDefs.map((_) => (
|
||||
<tr key={_.name}>
|
||||
<td>
|
||||
{_.name}
|
||||
{_.name}{_.unit && (', ' + _.unit)}
|
||||
</td>
|
||||
<td class="right">
|
||||
<div style="display: inline-block;">
|
||||
@@ -86,20 +86,19 @@ export default defineComponent({
|
||||
type="number"
|
||||
/>
|
||||
</div>
|
||||
<span class="breathe">{_.unit}</span>
|
||||
</td>
|
||||
</tr>
|
||||
))}
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<strong>Compounded (T3 and T4, "Cynoplus")</strong>
|
||||
<strong>Compounded (T3 and T4 - "Cynoplus")</strong>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="ratios">
|
||||
<td>
|
||||
Desired Ratio (T3:T4)
|
||||
</td>
|
||||
<td class="right">
|
||||
<td class="right ratio">
|
||||
<div>
|
||||
<input
|
||||
value={t3Ratio.value}
|
||||
@@ -110,8 +109,8 @@ export default defineComponent({
|
||||
step="1"
|
||||
type="number"
|
||||
/>
|
||||
</div>{" "}
|
||||
:{" "}
|
||||
</div>
|
||||
<span class="separator"/>
|
||||
<div>
|
||||
<input
|
||||
value={t4Ratio.value}
|
||||
@@ -127,9 +126,9 @@ export default defineComponent({
|
||||
</tr>
|
||||
<tr class="synthetic">
|
||||
<td>
|
||||
Synthetic T3/T4 Combo
|
||||
T3 mcg : T4 mcg
|
||||
</td>
|
||||
<td class="right">
|
||||
<td class="right ratio">
|
||||
<div>
|
||||
<input
|
||||
value={compounded.value.t3Syn}
|
||||
@@ -143,8 +142,8 @@ export default defineComponent({
|
||||
step="1"
|
||||
type="number"
|
||||
/>
|
||||
</div>{" "}
|
||||
:{" "}
|
||||
</div>
|
||||
<span class="separator"/>
|
||||
<div>
|
||||
<input
|
||||
value={compounded.value.t4Syn}
|
||||
@@ -169,7 +168,7 @@ export default defineComponent({
|
||||
<p>
|
||||
<ul>
|
||||
<li>
|
||||
1st November 2024: Migrated to new web framework and fixed some buggy input.
|
||||
1st November 2024: Migrated to new web framework and fixed some buggy input/ugly styling.
|
||||
</li>
|
||||
<li>
|
||||
13th March 2024: Removed the synthetic/pure distinction as it was confusing and
|
||||
|
||||
Reference in New Issue
Block a user