Skip to content

Commit

Permalink
fix: cannot convert an Array into an Object
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Mar 8, 2024
1 parent 4df5548 commit 4b3af48
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ import {
singleItemSelected
} from '$lib/logic/selection'
import type { DocumentState, InsertType, JSONParser } from 'svelte-jsoneditor'
import { initial, isEmpty, isObject } from 'lodash-es'
import { initial, isEmpty } from 'lodash-es'
import { compileJSONPointer, getIn } from 'immutable-json-patch'
import { isObjectOrArray } from '$lib/utils/typeUtils'
import { isObjectOrArray, isObject } from '$lib/utils/typeUtils'
import { getEnforceString } from '$lib/logic/documentState'
import type { ContextMenuItem } from 'svelte-jsoneditor'

Expand Down

0 comments on commit 4b3af48

Please sign in to comment.