-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #204 from UTDallasEPICS/stage
Summer changes
- Loading branch information
Showing
52 changed files
with
17,808 additions
and
17,113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,8 @@ NUXT_STRIPE_PUBLIC=pk_test_bG0z4rdRUTA25QUTo0tuXCwX | |
NUXT_STRIPE_SECRET='example_stripe_secret' | ||
NUXT_AWS_S3_BUCKET_NAME=images-dev.carsonsvillage.org | ||
NUXT_EMAIL_SOURCE_ADDRESS=[email protected] | ||
NUXT_CONSTANT_CONTACTS_CLIENTID=aa192b81-6347-4d1e-85ea-061bac9dc10e | ||
NUXT_CONSTANT_CONTACTS_SECRET='example_constant_contacts_secret' | ||
|
||
AWS_ACCESS_KEY_ID=AKIAT4QWIMWMZ3KXGZ62 | ||
AWS_SECRET_ACCESS_KEY='example_aws_secret_access_key' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
|
||
<template lang="pug"> | ||
// I removed the `for i` stuff because I want to make an individual Reply component here and will have a for loop that displays everything as it is in where the component is being called | ||
div.reply-box(v-if="r.reply?.length > 0", class="reply-box", style="padding: 1rem; text-align: left; border-bottom: 1px solid black") | ||
div.reply-header(style="font-size: 1rem; font-weight: bold; margin-bottom: 2.5rem; margin-left: 1rem") {{ r.name }} | ||
div.reply-body(style="font-size: 1rem; color: #666; margin-bottom: 2.5rem;") {{ r.reply }} | ||
div.reply-header(style="font-size: 1rem; font-weight: bold; margin-bottom: 2.5rem; margin-left: 1rem" ) {{ r.name }} | ||
div.reply-body(style="font-size: 1rem; color: #666; margin-bottom: 2.5rem;") {{ r.reply }} | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import type {Reply} from '@/types.d.ts' | ||
const props = defineProps<{ r: Reply }>() | ||
</script> | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.