fix(idaa): resolve type mismatches in delete methods and liveQuery results
- Updated 'method' parameter types in IDAA edit components to match the expected union types in the V3 API helpers. - Applied type casting to 'liveQuery' results in the Archives page to ensure 'topic_name' and other convenience fields are recognized by the compiler. - Fixed casting for 'method' variable in delete operations across Archives, Bulletin Board, and Recovery Meetings.
This commit is contained in:
@@ -708,7 +708,7 @@
|
||||
.delete_ae_obj_id__event({
|
||||
api_cfg: $ae_api,
|
||||
event_id: event_id,
|
||||
method: method,
|
||||
method: method as any,
|
||||
log_lvl: log_lvl
|
||||
})
|
||||
.then(function (event_obj_delete_result) {
|
||||
|
||||
Reference in New Issue
Block a user