Skip to content

Commit a55228c

Browse files
committed
fix label typo
1 parent 68d4a01 commit a55228c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

client/src/app/cansurv/main/tab-actuarial/actuarial.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,7 @@ export default function Actuarial({ data, seerData, params, precision }) {
102102
{subStratumVars.map((e) => (
103103
<Col key={e.name} sm="auto">
104104
<Form.Group controlId={e.name}>
105-
<Form.Label></Form.Label>
106-
{e.label}
105+
<Form.Label>{e.label}</Form.Label>
107106
<Form.Select {...register(e.name, { valueAsNumber: true })}>
108107
{e.factors.map((f) => (
109108
<option key={f.value} value={f.value}>

client/src/app/cansurv/main/tab-k-year/k-year.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,7 @@ export default function KYear({ data, params, seerData, precision }) {
147147
{subStratumVars.map((e) => (
148148
<Col key={e.name} sm="auto">
149149
<Form.Group controlId={e.name}>
150-
<Form.Label></Form.Label>
151-
{e.label}
150+
<Form.Label>{e.label}</Form.Label>
152151
<Form.Select {...register(e.name, { valueAsNumber: true })}>
153152
{e.factors.map((f) => (
154153
<option key={f.value} value={f.value}>

0 commit comments

Comments
 (0)