diff --git a/frontend/src/components/misc/WebhookManager.vue b/frontend/src/components/misc/WebhookManager.vue
index 0e5b8aebb..86c619a3d 100644
--- a/frontend/src/components/misc/WebhookManager.vue
+++ b/frontend/src/components/misc/WebhookManager.vue
@@ -145,7 +145,7 @@ function doDelete() {
@@ -153,7 +153,7 @@ function doDelete() {
diff --git a/frontend/src/modelTypes/IWebhook.ts b/frontend/src/modelTypes/IWebhook.ts
index 137a386c5..dc1422464 100644
--- a/frontend/src/modelTypes/IWebhook.ts
+++ b/frontend/src/modelTypes/IWebhook.ts
@@ -6,8 +6,8 @@ export interface IWebhook extends IAbstract {
projectId: number
userId: number
secret: string
- basicauthuser: string
- basicauthpassword: string
+ basicAuthUser: string
+ basicAuthPassword: string
targetUrl: string
events: string[]
createdBy: IUser
diff --git a/frontend/src/models/webhook.ts b/frontend/src/models/webhook.ts
index e86c7bdec..a3937a1e6 100644
--- a/frontend/src/models/webhook.ts
+++ b/frontend/src/models/webhook.ts
@@ -7,8 +7,8 @@ export default class WebhookModel extends AbstractModel implements IWe
projectId = 0
userId = 0
secret = ''
- basicauthuser = ''
- basicauthpassword = ''
+ basicAuthUser = ''
+ basicAuthPassword = ''
targetUrl = ''
events = []
createdBy = null