Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Hy0tic committed Oct 4, 2024
1 parent 6054387 commit 6f62630
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions pages/melloPhotoStorage/upload.vue
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,21 @@
}
const showSuccessToast = () => {
toast.add({ severity: 'success', summary: 'Successfully Uploaded File', detail: 'File Uploaded', life: 3000 });
toast.add({
severity: "success",
summary: "Successfully Uploaded File",
detail: "File Uploaded",
life: 3000
});
};
const showErrorToast = () => {
toast.add({ severity: 'error', summary: 'Error Uploading File', detail: 'Failed To Upload File', life: 3000 });
toast.add({
severity: "error",
summary: "Error Uploading File",
detail: "Failed To Upload File",
life: 3000
});
};
definePageMeta({
Expand Down

0 comments on commit 6f62630

Please sign in to comment.