Skip to content

Commit b06d927

Browse files
committed
Always sort schema lists (fixed Sorting on database items in the schema browser not alphabetical #376)
Signed-off-by: worksofliam <[email protected]>
1 parent c82ae7b commit b06d927

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/views/schemaBrowser/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,8 @@ export default class schemaBrowser {
467467

468468
const data = await Schemas.getObjects(schema, [type], {
469469
limit: pageSize,
470-
offset
470+
offset,
471+
sort: true
471472
});
472473

473474
if (data.length > 0) {

0 commit comments

Comments
 (0)