fix: add No Sort option

Fix #764
This commit is contained in:
ShareVB 2024-09-11 22:33:16 +02:00
parent 318fb6efb9
commit 8ccbc34691

View file

@ -4,6 +4,11 @@ import { convert } from './list-converter.models';
import type { ConvertOptions } from './list-converter.types';
const sortOrderOptions = [
{
label: 'No sort',
value: null,
disabled: false,
},
{
label: 'Sort ascending',
value: 'asc',