Skip to content

Commit

Permalink
String consistency in UI
Browse files Browse the repository at this point in the history
  • Loading branch information
scosman committed Mar 3, 2025
1 parent 358bd88 commit 99495e8
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
async function get_score_summary() {
score_summary = null
if (!current_eval_config_id) {
score_summary_error = new KilnError("No eval config selected", null)
score_summary_error = new KilnError("No evaluation method selected", null)
return
}
try {
Expand Down Expand Up @@ -325,9 +325,9 @@
const results: [string, [unknown, string][]][] = []
if (configs_options.length > 0) {
results.push(["Select Eval Config", configs_options])
results.push(["Select Eval Method", configs_options])
}
results.push(["Manage Eval Configs", [["add_config", "Add Eval Config"]]])
results.push(["Manage Eval Methods", [["add_config", "Add Eval Method"]]])
return results
}
Expand Down Expand Up @@ -460,7 +460,7 @@
<FormElement
hide_label={true}
id="eval_config_select"
label="Eval Config"
label="Eval Method"
inputType="select"
bind:value={current_eval_config_id}
select_options_grouped={get_eval_config_select_options(
Expand Down Expand Up @@ -665,7 +665,7 @@
add_task_config_dialog?.show()
}}
>
Add Task Config
Add Run Method
</button>
{/if}
</div>
Expand Down

0 comments on commit 99495e8

Please sign in to comment.