Skip to content

Commit

Permalink
fix #1425
Browse files Browse the repository at this point in the history
  • Loading branch information
mgubaidullin committed Sep 23, 2024
1 parent 98b3c5f commit 3e27d7f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export function DslProperties(props: Props) {

function getPropertySelector() {
return (
<div style={{display: 'flex', flexDirection: 'row', alignItems: 'center', gap: '3px'}}>
<div style={{display: 'flex', flexDirection: 'row', alignItems: 'center', gap: '3px', pointerEvents: 'initial', opacity: '1'}}>
<ToggleGroup aria-label="properties selctor">
<ToggleGroupItem
text="Required"
Expand Down
2 changes: 1 addition & 1 deletion karavan-designer/src/designer/property/DslProperties.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export function DslProperties(props: Props) {

function getPropertySelector() {
return (
<div style={{display: 'flex', flexDirection: 'row', alignItems: 'center', gap: '3px'}}>
<div style={{display: 'flex', flexDirection: 'row', alignItems: 'center', gap: '3px', pointerEvents: 'initial', opacity: '1'}}>
<ToggleGroup aria-label="properties selctor">
<ToggleGroupItem
text="Required"
Expand Down
2 changes: 1 addition & 1 deletion karavan-space/src/designer/property/DslProperties.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export function DslProperties(props: Props) {

function getPropertySelector() {
return (
<div style={{display: 'flex', flexDirection: 'row', alignItems: 'center', gap: '3px'}}>
<div style={{display: 'flex', flexDirection: 'row', alignItems: 'center', gap: '3px', pointerEvents: 'initial', opacity: '1'}}>
<ToggleGroup aria-label="properties selctor">
<ToggleGroupItem
text="Required"
Expand Down

0 comments on commit 3e27d7f

Please sign in to comment.