@@ -10,6 +10,7 @@ import {getFieldVal} from '../../fieldGroup/FieldGroupUtils.js';
10
10
import { SuggestBoxInputField } from '../../ui/SuggestBoxInputField.jsx' ;
11
11
import ColValuesStatistics from '../ColValuesStatistics.js' ;
12
12
import { showColSelectPopup } from './ColSelectView.jsx' ;
13
+ import MAGNIFYING_GLASS from 'html/images/icons-2014/magnifyingGlass.png' ;
13
14
14
15
const EXPRESSION_TTIPS = `
15
16
Supported operators: ^, *, /, +, -, <, <=, =, <>, >=, >, and, or.
@@ -88,7 +89,7 @@ export function ColumnOrExpression({colValStats,params,groupKey,fldPath,label,la
88
89
89
90
// http://www.charbase.com/1f50d-unicode-left-pointing-magnifying-glass
90
91
// http://www.charbase.com/1f50e-unicode-right-pointing-magnifying-glass
91
- const cols = '\ud83d\udd0e' ;
92
+ // const cols = '\ud83d\udd0e';
92
93
return (
93
94
< div style = { { whiteSpace : 'nowrap' } } >
94
95
< SuggestBoxInputField
@@ -112,7 +113,7 @@ export function ColumnOrExpression({colValStats,params,groupKey,fldPath,label,la
112
113
< div style = { { display : 'inline-block' , cursor :'pointer' , paddingLeft : 3 , verticalAlign : 'middle' , fontSize : 'larger' } }
113
114
title = { `Select ${ name } column` }
114
115
onClick = { ( ) => showColSelectPopup ( colValStats , onColSelected , `Choose ${ name } ` , 'OK' , val ) } >
115
- { cols }
116
+ < ToolbarButton icon = { MAGNIFYING_GLASS } />
116
117
</ div >
117
118
</ div >
118
119
) ;
0 commit comments