mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix text color for lora card (#5417)
* use label * lint --------- Co-authored-by: Mary Hipp <maryhipp@Marys-MacBook-Air.local>
This commit is contained in:
parent
12e9f17f7a
commit
8e17e29a5c
@ -4,10 +4,10 @@ import {
|
||||
InvCardBody,
|
||||
InvCardHeader,
|
||||
} from 'common/components/InvCard/wrapper';
|
||||
import { InvLabel } from 'common/components/InvControl/InvLabel';
|
||||
import { InvIconButton } from 'common/components/InvIconButton/InvIconButton';
|
||||
import { InvNumberInput } from 'common/components/InvNumberInput/InvNumberInput';
|
||||
import { InvSlider } from 'common/components/InvSlider/InvSlider';
|
||||
import { InvText } from 'common/components/InvText/wrapper';
|
||||
import type { LoRA } from 'features/lora/store/loraSlice';
|
||||
import { loraRemoved, loraWeightChanged } from 'features/lora/store/loraSlice';
|
||||
import { memo, useCallback } from 'react';
|
||||
@ -35,9 +35,9 @@ export const LoRACard = memo((props: LoRACardProps) => {
|
||||
return (
|
||||
<InvCard variant="lora">
|
||||
<InvCardHeader>
|
||||
<InvText noOfLines={1} wordBreak="break-all">
|
||||
<InvLabel noOfLines={1} wordBreak="break-all">
|
||||
{lora.model_name}
|
||||
</InvText>
|
||||
</InvLabel>
|
||||
<InvIconButton
|
||||
aria-label="Remove LoRA"
|
||||
variant="ghost"
|
||||
|
Loading…
x
Reference in New Issue
Block a user