Do not expand sorted array

This commit is contained in:
Jos de Jong 2020-09-02 09:28:41 +02:00
parent 3cf43de54c
commit ad35e6fc16
2 changed files with 11 additions and 18 deletions

View File

@ -92,19 +92,17 @@ import { compileJSONPointer } from '../../utils/jsonPointer';
<col width="75%">
</colgroup>
<tbody>
{#if rootPath.length > 0}
<tr>
<th>Path</th>
<td>
<input
class="path"
type="text"
readonly
value={stringifyPath(rootPath)}
/>
</td>
</tr>
{/if}
<tr>
<th>Path</th>
<td>
<input
class="path"
type="text"
readonly
value={rootPath.length > 0 ? stringifyPath(rootPath) : '(whole document)'}
/>
</td>
</tr>
{#if jsonIsArray && (properties.length > 1 || selectedProperty === undefined) }
<tr>
<th>Property</th>

View File

@ -276,12 +276,7 @@
rootPath,
onSort: async (operations) => {
console.log('onSort', rootPath, operations)
patch(operations, selection)
await tick()
handleExpand(rootPath, true, false)
}
}, {
...SIMPLE_MODAL_OPTIONS,