Commit dfd20743 authored by StyleZhang's avatar StyleZhang

fix: chat configuration style

parent c21e2063
...@@ -280,7 +280,7 @@ const Answer: FC<IAnswerProps> = ({ ...@@ -280,7 +280,7 @@ const Answer: FC<IAnswerProps> = ({
{!feedbackDisabled && renderFeedbackRating(feedback?.rating, !isHideFeedbackEdit, displayScene !== 'console')} {!feedbackDisabled && renderFeedbackRating(feedback?.rating, !isHideFeedbackEdit, displayScene !== 'console')}
</div> </div>
</div> </div>
{more && <MoreInfo className='hidden group-hover:block' more={more} isQuestion={false} />} {more && <MoreInfo className='invisible group-hover:visible' more={more} isQuestion={false} />}
</div> </div>
</div> </div>
</div> </div>
......
...@@ -186,7 +186,7 @@ const ConfigVar: FC<IConfigVarProps> = ({ promptVariables, readonly, onPromptVar ...@@ -186,7 +186,7 @@ const ConfigVar: FC<IConfigVarProps> = ({ promptVariables, readonly, onPromptVar
)} )}
{hasVar && ( {hasVar && (
<div className='rounded-lg border border-gray-200 bg-white overflow-x-auto'> <div className='rounded-lg border border-gray-200 bg-white overflow-x-auto'>
<table className={`${s.table} min-w-[440px] max-w-full border-collapse border-0 rounded-lg text-sm`}> <table className={`${s.table} min-w-[440px] w-full max-w-full border-collapse border-0 rounded-lg text-sm`}>
<thead className="border-b border-gray-200 text-gray-500 text-xs font-medium"> <thead className="border-b border-gray-200 text-gray-500 text-xs font-medium">
<tr className='uppercase'> <tr className='uppercase'>
<td>{t('appDebug.variableTable.key')}</td> <td>{t('appDebug.variableTable.key')}</td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment