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
|
<textLink
|
||||||
linkType="navigation"
|
linkType="navigation"
|
||||||
:text="backLink"
|
:text="backLink"
|
||||||
displayLoadingModal
|
useLoadingModal
|
||||||
@click-event="linkClick"
|
@click-event="linkClick"
|
||||||
href="javascript:void(0)"
|
href="javascript:void(0)"
|
||||||
data-bs-target="#footerModal"
|
data-bs-target="#footerModal"
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
linkType="textSmall"
|
linkType="textSmall"
|
||||||
text="Edit"
|
text="Edit"
|
||||||
class="ml-auto"
|
class="ml-auto"
|
||||||
displayLoadingModal
|
useLoadingModal
|
||||||
@click-event="linkClicked"
|
@click-event="linkClicked"
|
||||||
href="javascript:void(0)" />
|
href="javascript:void(0)" />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ export default {
|
||||||
href: {
|
href: {
|
||||||
type: String,
|
type: String,
|
||||||
},
|
},
|
||||||
displayLoadingModal: {
|
useLoadingModal: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
|
|
@ -44,7 +44,7 @@ export default {
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
if (this.displayLoadingModal) {
|
if (this.useLoadingModal) {
|
||||||
this.$refs.loadingModal.showModal();
|
this.$refs.loadingModal.showModal();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue