File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed
src/components/ContextChat Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change 7
7
<label class =" cc-output__sources__label" >
8
8
{{ outputShape.sources.description }}
9
9
</label >
10
- <ContextChatSource v-for =" (source, i) in sources"
11
- :key =" 'source-' + i + '-' + source.url"
12
- :source =" source" />
10
+ <ol >
11
+ <li v-for =" (source, i) in sources"
12
+ :key =" 'source-' + i + '-' + source.url"
13
+ class =" cc-output__sources__line" >
14
+ <ContextChatSource
15
+ :source =" source" />
16
+ </li >
17
+ </ol >
13
18
</div >
14
19
</template >
15
20
@@ -53,5 +58,12 @@ export default {
53
58
flex- direction: column;
54
59
align- items: start;
55
60
gap: 8px ;
61
+
62
+ & __line {
63
+ border- radius: var (-- border- radius- large);
64
+ & : hover {
65
+ background- color: var (-- color- background- hover);
66
+ }
67
+ }
56
68
}
57
69
< / style>
You can’t perform that action at this time.
0 commit comments