depreciate v-html refs

This commit is contained in:
gozzy 2022-10-28 07:51:47 +00:00
parent 1d15649faa
commit c1155ed3ad
4 changed files with 5 additions and 7 deletions

View File

@ -1,4 +1,3 @@
<template> <template>
<b-loading v-model="enabled"> <b-loading v-model="enabled">
<div class="loading-container"> <div class="loading-container">
@ -25,4 +24,4 @@ export default {
} }
} }
} }
</script> </script>

View File

@ -51,8 +51,7 @@
data-test="enter_note_field" data-test="enter_note_field"
></b-input> ></b-input>
<div v-if="hasErrorNote" class="help" :class="hasErrorNote.type"> <div v-if="hasErrorNote" class="help" :class="hasErrorNote.type">
<!-- eslint-disable vue/no-v-html --> <p>{{ hasErrorNote.msg }}</p>
<p v-html="hasErrorNote.msg"></p>
</div> </div>
</div> </div>
<div v-if="!hasErrorNote && depositTxHash" class="field field-withdraw"> <div v-if="!hasErrorNote && depositTxHash" class="field field-withdraw">
@ -541,4 +540,4 @@ export default {
} }
} }
} }
</style> </style>

View File

@ -431,4 +431,4 @@ class EventsFactory {
} }
} }
export { EventsFactory } export { EventsFactory }

View File

@ -45,4 +45,4 @@ export const actions = {
type: 'approve' type: 'approve'
}) })
} }
} }