File tree Expand file tree Collapse file tree 3 files changed +4
-14
lines changed
vue/src/components/search Expand file tree Collapse file tree 3 files changed +4
-14
lines changed Original file line number Diff line number Diff line change @@ -1511,7 +1511,8 @@ const SearchBox = defineComponent({
15111511 && this . AIResponse
15121512 && this . AIResponse . response
15131513 && this . AIResponse . response . answer
1514- && this . AIResponse . response . answer . documentIds ? (
1514+ && this . AIResponse . response . answer . documentIds
1515+ && this . AIResponse . response . answer . documentIds . length ? (
15151516 < Footer themePreset = { this . $props . themePreset } >
15161517 Summary generated using the following sources:{ ' ' }
15171518 < SourceTags >
Original file line number Diff line number Diff line change @@ -1310,7 +1310,7 @@ const SearchBox = (props) => {
13101310 } ;
13111311 return showSourceDocuments
13121312 && showAIScreenFooter
1313- && sourceDocIds ? (
1313+ && Array . isArray ( sourceDocIds ) && sourceDocIds . length ? (
13141314 < Footer themePreset = { props . themePreset } >
13151315 Summary generated using the following sources:{ ' ' }
13161316 < SourceTags >
Original file line number Diff line number Diff line change @@ -362,18 +362,7 @@ export const MessageInput = styled(TextArea)`
362362 border-radius: 5px;
363363 border: 1px solid #ccc;
364364 color: ${ props => props . theme . colors . textColor } ;
365-
366- ::placeholder {
367- color: ${ props => props . theme . colors . textColor } ;
368- }
369-
370- :-ms-input-placeholder {
371- color: ${ props => props . theme . colors . textColor } ;
372- }
373-
374- ::-ms-input-placeholder {
375- color: ${ props => props . theme . colors . textColor } ;
376- }
365+
377366
378367 ${ ( { enterButton } ) =>
379368 enterButton
You can’t perform that action at this time.
0 commit comments