File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
pages/browser/components/search-key-list Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,8 @@ const SearchKeyList = () => {
150
150
} }
151
151
optionalButton = { searchMode === SearchMode . Pattern ? (
152
152
< EuiToolTip
153
- content = "Exact Search"
153
+ title = "Exact Search"
154
+ content = { exactMatch ? 'Disable to see keys matching your pattern' : 'Enable to see keys that exactly match your pattern' }
154
155
position = "bottom"
155
156
>
156
157
< EuiButtonIcon
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ export const initialState: KeysStore = {
80
80
isBrowserFullScreen : false ,
81
81
searchMode : localStorageService ?. get ( BrowserStorageItem . browserSearchMode ) ?? SearchMode . Pattern ,
82
82
viewType : localStorageService ?. get ( BrowserStorageItem . browserViewType ) ?? KeyViewType . Browser ,
83
- exactMatch : localStorageService ?. get ( BrowserStorageItem . browserExactMatch ) ?? false ,
83
+ exactMatch : localStorageService ?. get ( BrowserStorageItem . browserExactMatch ) ?? true ,
84
84
data : {
85
85
total : 0 ,
86
86
scanned : 0 ,
You can’t perform that action at this time.
0 commit comments