commit: 8c8a8232c8c23f706b82c03c7ddadbd94ca2f3df
parent 5c048321e787b880f4c228e52b956b59edc3fc4f
Author: Tusooa Zhu <tusooa@kazv.moe>
Date: Wed, 9 Feb 2022 17:03:17 -0500
Lint
Diffstat:
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/components/confirm_modal/confirm_modal.vue b/src/components/confirm_modal/confirm_modal.vue
@@ -2,26 +2,26 @@
<dialog-modal
v-if="showing"
class="confirm-modal"
- :onCancel="onCancel"
+ :on-cancel="onCancel"
>
<template v-slot:header>
- <span v-text="title"></span>
+ <span v-text="title" />
</template>
- <slot></slot>
+ <slot />
<template v-slot:footer>
<button
class="btn button-default"
- v-text="confirmText"
@click.prevent="onAccept"
- ></button>
+ v-text="confirmText"
+ />
<button
class="btn button-default"
- v-text="cancelText"
@click.prevent="onCancel"
- ></button>
+ v-text="cancelText"
+ />
</template>
</dialog-modal>
</template>
diff --git a/src/components/follow_button/follow_button.js b/src/components/follow_button/follow_button.js
@@ -8,7 +8,7 @@ export default {
data () {
return {
inProgress: false,
- showingConfirmUnfollow: false,
+ showingConfirmUnfollow: false
}
},
computed: {