-
@@ -160,6 +168,7 @@
message="Received from"
showGivenToUser="true"
/>
+
@@ -226,6 +235,7 @@ import { Component, Vue } from "vue-facing-decorator";
import EntityIcon from "@/components/EntityIcon.vue";
import GiftedDialog from "@/components/GiftedDialog.vue";
+import GiftedPrompts from "@/components/GiftedPrompts.vue";
import InfiniteScroll from "@/components/InfiniteScroll.vue";
import QuickNav from "@/components/QuickNav.vue";
import TopMessage from "@/components/TopMessage.vue";
@@ -252,6 +262,7 @@ interface Notification {
@Component({
components: {
GiftedDialog,
+ GiftedPrompts,
QuickNav,
EntityIcon,
InfiniteScroll,
@@ -500,5 +511,9 @@ export default class HomeView extends Vue {
openDialog(giver: GiverInputInfo) {
(this.$refs.customDialog as GiftedDialog).open(giver);
}
+
+ openGiftedPrompts() {
+ (this.$refs.giftedPrompts as GiftedPrompts).open();
+ }
}