Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tables branch testing #14

Merged
merged 5 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@ RUN npm run build
FROM nginx:stable-alpine as production-stage
COPY --from=build-stage /app/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
CMD ["nginx", "-g", "daemon off;"]

#Needs to be in WSL for it to run
12,454 changes: 2,326 additions & 10,128 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "HIDE - LBFE Team",
"version": "1.0.0",
"engines": {
"node": "^18.8.0"
"node": "^20.10.3"
},
"description": "frontend",
"private": true,
Expand All @@ -23,26 +23,28 @@
"@fullcalendar/interaction": "^5.10.1",
"@fullcalendar/timegrid": "^5.10.1",
"@fullcalendar/vue3": "^5.10.1",
"@types/node": "^20.10.3",
"axios": "^0.27.2",
"core-js": "^3.6.5",
"moment": "^2.29.1",
"msal": "^1.4.16",
"mutationobserver-shim": "^0.3.7",
"nodemon": "^3.0.2",
"popper.js": "^1.16.1",
"register-service-worker": "^1.7.1",
"tiny-emitter": "^2.1.0",
"vue": "^3.2.29",
"vue": "^3.2.40",
"vue-axios": "^3.4.1",
"vue-loader": "^17.0.0",
"vue-msal": "^3.2.0",
"vue-router": "^4.0.12",
"vue-template-compiler": "^2.6.12",
"vue-template-compiler": "^2.7.10",
"vuex": "^4.0.0-beta.4"
},
"devDependencies": {
"@popperjs/core": "^2.11.2",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vue/cli-service": "^5.0.8",
"bootstrap": "^5.1.3",
"lodash": "^4.17.19",
"postcss": "^8.4.6",
Expand Down
2 changes: 1 addition & 1 deletion src/components/busforms/ReportForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default {
</div>

<div class="row d-flex justify-content-center align-items-center generateRow">
<button type="submit" class="btn btn-primary generateButton" id="reportSubmit"> Generate Reports <i class="fas fa-clipboard-list"></i></button>
<router-link to="/reportFormTable" class="btn btn-primary generateButton" id="reportSubmit"> Generate Reports <i class="fas fa-clipboard-list"></i></router-link>
</div>
</form>
</div>
Expand Down
Loading
Loading