Skip to content

Commit

Permalink
fix: add No Sort option
Browse files Browse the repository at this point in the history
  • Loading branch information
sharevb committed Sep 11, 2024
1 parent 318fb6e commit 8ccbc34
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/tools/list-converter/list-converter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 8ccbc34

Please sign in to comment.