We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3685817 commit faf0b3aCopy full SHA for faf0b3a
src/pages/organizations/[id]/index.js
@@ -315,6 +315,25 @@ class Organization extends Component {
315
}}
316
onBoundsChange={this.onMapBoundsChange.bind(this)}
317
/>
318
+ <Checkbox
319
+ border={'2px'}
320
+ marginTop={'-5rem'}
321
+ marginLeft={'1rem'}
322
+ position='absolute'
323
+ zIndex='2000'
324
+ borderColor='brand.600'
325
+ p={2}
326
+ bg='white'
327
+ name='map-bounds-filter'
328
+ id='map-bounds-filter'
329
+ type='checkbox'
330
+ colorScheme={'brand'}
331
+ isChecked={searchOnMapMove}
332
+ onChange={(e) => this.setSearchOnMapMove(e)}
333
+ >
334
+ Filter teams by map
335
+ </Checkbox>
336
+ </>
337
)
338
}
339
0 commit comments