Skip to content

Commit fcd85c8

Browse files
committed
PR comments
1 parent 55361cd commit fcd85c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/projects/projectId/attributes/attributeId/ExecutionContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export default function ExecutionContainer(props: ExecutionContainerProps) {
6868
on all records, or test-run it on 10 examples (which are sampled randomly). Test results are
6969
shown
7070
below after computation.{
71-
props.currentAttribute.dataType == DataTypeEnum.LLM_RESPONSE && <span >Note that LLM results are cached for the same set of settings to ensure that a critical error during the final execution doesn't lose the already calculated values</span>
71+
props.currentAttribute.dataType == DataTypeEnum.LLM_RESPONSE && <span className="italic">Note that LLM results are cached for the same set of settings to ensure that a critical error during the final execution doesn't lose the already calculated values</span>
7272
}</div>
7373
{requestedSomething && <div className="inline-block">
7474
<LoadingIcon color="indigo" />

src/components/projects/projectId/attributes/attributeId/LLM/LLMPlaygroundModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export default function LLMPlaygroundModal() {
143143
onKeyDown={(e) => e.key === 'Enter' && getByRunningId()}
144144
className="w-16 h-full text-right text-sm text-gray-900 border border-gray-200 rounded-lg align-top"
145145
/>
146-
<KernButton icon={IconHandClick} text="Get by running_id" size="small" onClick={getByRunningId} />
146+
<KernButton disabled={!inputRunningId} icon={IconHandClick} text="Get by running_id" size="small" onClick={getByRunningId} />
147147
</div>
148148
<div className="grid grid-cols-2 gap-2 text-sm max-h-52 overflow-y-auto" style={{ gridTemplateColumns: `max-content auto` }}>
149149
{recordKeys.map((rk) => <Fragment key={rk.name}>

0 commit comments

Comments
 (0)