Change parameter name
This commit is contained in:
parent
f94e58cacb
commit
4af89dc437
3 changed files with 4 additions and 4 deletions
|
|
@ -20,7 +20,7 @@
|
|||
<textLink
|
||||
linkType="navigation"
|
||||
:text="backLink"
|
||||
displayLoadingModal
|
||||
useLoadingModal
|
||||
@click-event="linkClick"
|
||||
href="javascript:void(0)"
|
||||
data-bs-target="#footerModal"
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
linkType="textSmall"
|
||||
text="Edit"
|
||||
class="ml-auto"
|
||||
displayLoadingModal
|
||||
useLoadingModal
|
||||
@click-event="linkClicked"
|
||||
href="javascript:void(0)" />
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ export default {
|
|||
href: {
|
||||
type: String,
|
||||
},
|
||||
displayLoadingModal: {
|
||||
useLoadingModal: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
|
|
@ -44,7 +44,7 @@ export default {
|
|||
true
|
||||
);
|
||||
|
||||
if (this.displayLoadingModal) {
|
||||
if (this.useLoadingModal) {
|
||||
this.$refs.loadingModal.showModal();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue