Skip to content

Commit

Permalink
Typescript merge fixes (#1770)
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilBastian authored Mar 6, 2024
1 parent 5a37cbf commit 2886c31
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ function edit() {
function close() {
emit("cancel");
}
function save() {}
</script>

<template>
Expand All @@ -90,7 +88,7 @@ function save() {}
<h3 class="modal-title" v-if="!model.message_redirect_id">Create redirect</h3>
</div>

<form name="redirectForm" novalidate @submit.prevent="save">
<form name="redirectForm" novalidate>
<div class="modal-body">
<div class="row">
<div class="form-group">
Expand Down Expand Up @@ -175,7 +173,7 @@ function save() {}
}
.modal-container {
width: 400px;
width: 600px;
margin: 0 auto;
padding: 20px 30px;
background-color: #fff;
Expand Down

0 comments on commit 2886c31

Please sign in to comment.