mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Change default sort to none
This commit is contained in:
parent
6135d4b8d7
commit
08ed392832
@ -312,7 +312,7 @@ Consider the following story snippets:
|
||||
|
||||
## Sorting controls
|
||||
|
||||
By default, controls are sorted alphabetically by arg name (`alpha`). This can be configured to sort alphabetically required args first (`requiredFirst`), or to not sort at all and use whatever order the args data is processed in (`none`).
|
||||
By default, controls are unsorted and use whatever order the args data is processed in (`none`). It can also be configured to sort alphabetically by arg name (`alpha`) or alphabetically required args first (`requiredFirst`).
|
||||
|
||||
Consider the following snippet to force required args first:
|
||||
|
||||
|
@ -346,7 +346,7 @@ export const ArgsTable: FC<ArgsTableProps> = (props) => {
|
||||
compact,
|
||||
inAddonPanel,
|
||||
initialExpandedArgs,
|
||||
sort = 'alpha',
|
||||
sort = 'none',
|
||||
} = props as ArgsTableRowProps;
|
||||
|
||||
const groups = groupRows(
|
||||
|
Loading…
x
Reference in New Issue
Block a user