Skip to content

Commit 491e4ff

Browse files
Update LoRA select placeholder text for better clarity
Co-authored-by: kent <kent@invoke.ai>
1 parent 3f78ac9 commit 491e4ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

invokeai/frontend/web/src/features/lora/components/LoRASelect.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const LoRASelect = () => {
5555
}
5656

5757
if (compatibleLoRAs.length === 0) {
58-
return currentBaseModel ? t('models.noCompatibleLoRAs') : t('models.selectModelFirst');
58+
return currentBaseModel ? t('models.noCompatibleLoRAs') : t('models.selectModel');
5959
}
6060

6161
return t('models.addLora');
@@ -88,7 +88,7 @@ const LoRASelect = () => {
8888
placeholder={placeholder}
8989
getIsOptionDisabled={getIsDisabled}
9090
initialGroupStates={initialGroupStates}
91-
noOptionsText={currentBaseModel ? t('models.noCompatibleLoRAs') : t('models.selectModelFirst')}
91+
noOptionsText={currentBaseModel ? t('models.noCompatibleLoRAs') : t('models.selectModel')}
9292
/>
9393
</FormControl>
9494
);

0 commit comments

Comments
 (0)