mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-17 12:56:05 +00:00
fix s3 adapter
This commit is contained in:
@@ -225,12 +225,12 @@ export function FormContextOverride({
|
||||
// especially useful for AnyOf, since it doesn't need to fully validate (e.g. pattern)
|
||||
if (prefix) {
|
||||
additional.root = prefix;
|
||||
additional.setValue = (pointer: string, value: any) => {
|
||||
ctx.setValue(prefixPointer(pointer, prefix), value);
|
||||
};
|
||||
additional.deleteValue = (pointer: string) => {
|
||||
ctx.deleteValue(prefixPointer(pointer, prefix));
|
||||
/*additional.setValue = (path: string, value: any) => {
|
||||
ctx.setValue(prefixPath(path, prefix), value);
|
||||
};
|
||||
additional.deleteValue = (path: string) => {
|
||||
ctx.deleteValue(prefixPath(path, prefix));
|
||||
};*/
|
||||
}
|
||||
|
||||
const context = {
|
||||
|
||||
Reference in New Issue
Block a user