Skip to content

Commit 710ea33

Browse files
committed
PR updates
1 parent 6187c87 commit 710ea33

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Umbraco.Cms.Integrations.Crm.ActiveCampaign/Api/Management/Controllers/GetFormsPagedController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public GetFormsByPageController(IOptions<ActiveCampaignSettings> options, IHttpC
2222
[ProducesResponseType(StatusCodes.Status404NotFound)]
2323
[ProducesResponseType(StatusCodes.Status403Forbidden)]
2424
[ProducesResponseType(StatusCodes.Status500InternalServerError)]
25-
public async Task<IActionResult> GetForms([FromQuery] int? page = 1, string? searchQuery = "")
25+
public async Task<IActionResult> GetForms([FromQuery] int? page = 1, [FromQuery] string? searchQuery = "")
2626
{
2727
try
2828
{

src/Umbraco.Cms.Integrations.Crm.ActiveCampaign/Client/src/modal/activecampaign-forms-modal.element.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ export default class ActiveCampaignFormsModalElement
5353
}
5454

5555
disconnectedCallback() {
56+
super.disconnectedCallback();
5657
if (this.#filterTimeout) {
5758
clearTimeout(this.#filterTimeout);
5859
}

0 commit comments

Comments
 (0)