Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Olerinskaia committed Oct 15, 2024
1 parent aa37db1 commit ed4acf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/modal/EditDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const EditDialog = observer(function EditDialog({active}) {
const { index } = TabsStore
const [name, setName] = useState(currentQuery.name||'')
const [description, setDescription] = useState(currentQuery.description)
const [shared, setShared] = useState(!!currentQuery.url)
const [shared, setShared] = useState(!!currentQuery.url || true)
const [queryUrl, setQueryUrl] = useState(currentQuery.url)
const [tags, setTags] = useState([])
const [inputTagValue, setInputTagValue] = useState('')
Expand Down

0 comments on commit ed4acf3

Please sign in to comment.