File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,15 @@ beforeEach(() => {
12
12
textMessages : mockData . textMessages ,
13
13
showRoomsList : true ,
14
14
showAddRoom : mockData . showAddRoom ,
15
+ showSearch : mockData . showSearch ,
15
16
textFormatting : mockData . textFormatting ,
16
17
isMobile : false ,
17
18
rooms : mockData . rooms ,
18
19
loadingRooms : mockData . loadingRooms ,
19
20
roomsLoaded : mockData . roomsLoaded ,
20
21
room : mockData . rooms [ 0 ] ,
21
- roomActions : mockData . roomActions
22
+ roomActions : mockData . roomActions ,
23
+ linkOptions : mockData . linkOptions
22
24
}
23
25
} )
24
26
} )
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ const messagesLoaded = true
11
11
const roomActions = [ { title : 'A room action' } ]
12
12
const menuActions = [ { title : 'A menu action' } ]
13
13
const messageActions = [ { title : 'A message action' } ]
14
+ const showSearch = true
14
15
const showAddRoom = true
15
16
const showSendIcon = true
16
17
const showFiles = true
@@ -25,6 +26,7 @@ const responsiveBreakpoint = 10
25
26
const singleRoom = false
26
27
const theme = 'dark'
27
28
const acceptedFiles = '*'
29
+ const linkOptions = { disabled : false , target : '_blank' }
28
30
const styles = { general : { color : '#0a0a0a' } }
29
31
30
32
export default {
@@ -41,6 +43,7 @@ export default {
41
43
roomActions,
42
44
menuActions,
43
45
messageActions,
46
+ showSearch,
44
47
showAddRoom,
45
48
showSendIcon,
46
49
showFiles,
@@ -55,5 +58,6 @@ export default {
55
58
singleRoom,
56
59
theme,
57
60
acceptedFiles,
61
+ linkOptions,
58
62
styles
59
63
}
You can’t perform that action at this time.
0 commit comments