mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
fix(examples): fix command args case (#5635)
This commit is contained in:
@@ -53,11 +53,11 @@
|
||||
{ name: 'command_arguments_wild' },
|
||||
{
|
||||
name: 'command_arguments_struct',
|
||||
args: { Person: { name: 'ferris', age: 6 } }
|
||||
args: { person: { name: 'ferris', age: 6 } }
|
||||
},
|
||||
{
|
||||
name: 'command_arguments_tuple_struct',
|
||||
args: { InlinePerson: ['ferris', 6] }
|
||||
args: { inlinePerson: ['ferris', 6] }
|
||||
}
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user