Skip to content

Commit

Permalink
fix: missing VTextarea component
Browse files Browse the repository at this point in the history
  • Loading branch information
trev-dev committed Sep 10, 2024
1 parent d588a9b commit 4a5bafa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/components/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ function resendVerificationEmail(requestType) {

function uploadFile(requestType) {
return async function uploadFileHandler(req, res) {
try{
try {
const accessToken = getAccessToken(req);
if(!accessToken) {
return res.status(HttpStatus.UNAUTHORIZED).json({
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/plugins/vuetify.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ import {
VStepperWindow,
VStepperWindowItem,
VTable,
VTextarea,
VTextField,
VToolbar,
VToolbarTitle
Expand Down Expand Up @@ -94,6 +95,7 @@ export default new createVuetify({
VStepperWindow,
VStepperWindowItem,
VTable,
VTextarea,
VTextField,
VToolbar,
VToolbarTitle
Expand Down

0 comments on commit 4a5bafa

Please sign in to comment.