mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-11 05:57:07 +03:00
This commit is contained in:
parent
82cda98532
commit
c8b167adb3
5
.changes/delete-property.md
Normal file
5
.changes/delete-property.md
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
"tauri.js": patch
|
||||
---
|
||||
|
||||
Fixes `Reflect.deleteProperty` on promisified API calls failing with `Unable to delete property` by making it configurable.
|
@ -50,7 +50,8 @@ function transformCallback(
|
||||
|
||||
return callback?.(result)
|
||||
},
|
||||
writable: false
|
||||
writable: false,
|
||||
configurable: true
|
||||
})
|
||||
|
||||
return identifier
|
||||
|
630
tauri/examples/communication/dist/index.tauri.html
vendored
630
tauri/examples/communication/dist/index.tauri.html
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user