Skip to content

Commit

Permalink
fix: uploader component name
Browse files Browse the repository at this point in the history
  • Loading branch information
amiller68 committed Apr 4, 2024
1 parent bbf8976 commit 92ef857
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/boot/utils.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { boot } from "quasar/wrappers";

import { Buffer } from "buffer";
import DBUploader from "../components/Uploader.js";
import Uploader from "../components/Uploader.js";
// "async" is optional;
// more info on params: https://v2.quasar.dev/quasar-cli/boot-files
export default boot(async ({ app }) => {
// something to do
window.Buffer = Buffer;
window.global = window;
app.config.globalProperties.window = window;
app.component("DBUploader", DBUploader);
app.component("Uploader", Uploader);

Check failure on line 12 in src/boot/utils.js

View workflow job for this annotation

GitHub Actions / lint

Component name "Uploader" should always be multi-word
});

0 comments on commit 92ef857

Please sign in to comment.