Skip to content

Commit

Permalink
change saveBulkEdits response
Browse files Browse the repository at this point in the history
  • Loading branch information
chuchee committed Nov 12, 2024
1 parent 7d922f5 commit b422c73
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions vuu-ui/packages/vuu-data-test/src/TickingArrayDataSource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ export class TickingArrayDataSource extends ArrayDataSource {
return super.range;
}

set links(links: LinkDescriptorWithLabel[] | undefined) {
super.links = links;
}

get links() {
return this.#getVisualLinks?.(this.table.table);
}
Expand Down
4 changes: 2 additions & 2 deletions vuu-ui/packages/vuu-data-test/src/VuuModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -408,13 +408,13 @@ export class VuuModule<T extends string = string> implements IVuuModule<T> {

return {
action: {
type: "NO_ACTION",
type: "VP_RPC_SUCCESS",
},
requestId: "request_id",
rpcName: "VP_BULK_EDIT_SUBMIT_RPC",
type: "VIEW_PORT_MENU_RESP",
vpId,
} as VuuRpcMenuResponse;
} as unknown as VuuRpcViewportResponse;
}
}
throw Error("saveBulkEdits base table not found");
Expand Down

0 comments on commit b422c73

Please sign in to comment.