fix: build failing fixed

This commit is contained in:
Sai Nikhil 2024-09-18 18:28:27 +05:30 committed by Subhradeep Chakraborty
parent c7deed5710
commit c7ff644b2f
2 changed files with 1 additions and 11 deletions

View File

@ -267,8 +267,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<HistoryAlert
v-model="showHistoryDialog"
:alertName="alertName"
:alertTitle="alertTitle"
:additionalInfo="additionalInfo"
@closeDialog="closeDialog"
/>
</template>
@ -427,9 +425,7 @@ export default defineComponent({
const selectedAlert = ref({});
const isUpdated: any = ref(false);
const showHistoryDialog = ref(false);
const alertTitle = ref("");
const alertName = ref(""); // This will store the alert name sent on click
const additionalInfo = ref(""); // This will store the additional info sent on click
const alertName = ref(""); // This will store the alert name sent on click // This will store the additional info sent on click
const confirmDelete = ref<boolean>(false);
const splitterModel = ref(220);
const showForm = ref(false);
@ -838,8 +834,6 @@ export default defineComponent({
},
}).then(() => {
alertName.value = props.row.name;
alertTitle.value = "Alert History";
additionalInfo.value = "Additional Info";
showHistoryDialog.value = true;
});
@ -1103,9 +1097,7 @@ export default defineComponent({
alertStateLoadingMap,
templates,
routeTo,
alertTitle,
alertName,
additionalInfo,
showHistoryDialog,
showAlertDetails,
closeDialog,

View File

@ -139,8 +139,6 @@ export default defineComponent({
},
props: {
alertName: String,
alertTitle: String,
additionalInfo: String,
},