Skip to content

Commit

Permalink
Disable Not Contained operator for uploaded KML
Browse files Browse the repository at this point in the history
  • Loading branch information
micheal-w-wells committed Jan 3, 2024
1 parent a352bb9 commit 4a6d548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appv2/src/UI/Overlay/Records/RecordSet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ const Filter = (props) => {
<option key={Math.random()} value={'CONTAINED IN'} label={'CONTAINED IN'}>
CONAINED IN
</option>
<option key={Math.random()} value={'NOT CONTAINED IN'} label={'NOT CONTAINED IN'}>
<option key={Math.random()} disabled={true} value={'NOT CONTAINED IN'} label={'NOT CONTAINED IN'}>
NOT CONTAINED IN
</option>
</>
Expand Down

0 comments on commit 4a6d548

Please sign in to comment.