Skip to content

Commit

Permalink
Merge pull request #64 from kianmeng/fix-typos
Browse files Browse the repository at this point in the history
docs: fix typos
  • Loading branch information
bfritscher authored Oct 7, 2024
2 parents 96a1726 + 0a2d0b4 commit 0b2fd83
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ When using in your browser from an https address your server must also be behind

self-host this dashboard with docker* (web version has some limitations import/export size of files)

use environement variable `PUBLIC_PATH` if you need something else than `/`
use environment variable `PUBLIC_PATH` if you need something else than `/`

Example usage:
```bash
Expand Down
2 changes: 1 addition & 1 deletion quasar.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ module.exports = configure(function (ctx) {
languages: ['javascript', 'json'],
}),
)
// fix for devtools in electon based on https://github.com/quasarframework/quasar/issues/13535#issuecomment-1544028712
// fix for devtools in electron based on https://github.com/quasarframework/quasar/issues/13535#issuecomment-1544028712
if (!isClient) { return; }
cfg.externals = [({ request }, callback) => {
if (/\.\/build-node\/(hook|backend)\.js/.test(request)) {
Expand Down
2 changes: 1 addition & 1 deletion src-electron/electron-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ ipcMain.handle('importFile', async (events, collectionName, action) => {
try {
documents = JSON.parse(documents)
} catch (e) {
// asume ljson
// assume ljson
}
return appApi.importDocuments(collectionName, documents, action);
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/collection/CollectionUi.vue
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ export default defineComponent({
['int32', 'float'].includes(field.type) ||
(field.type === 'string' && field.sort)
);
// emtpy option + compatible field names
// empty option + compatible field names
return [''].concat(compatibleFields.map((field) => field.name));
},
schemaJson: {
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Document.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
>
<template v-slot:hint>
<div>
{{ actionDesciptions[action] }}
{{ actionDescriptions[action] }}
</div>
</template>
</q-select>
Expand Down Expand Up @@ -84,7 +84,7 @@ export default defineComponent({
results: [] as unknown[],
action: 'upsert',
actionOptions: ['create', 'upsert', 'update'],
actionDesciptions: {
actionDescriptions: {
create: 'Create a new document. Fails if id exists.',
upsert: 'Create a new document or update an existing document.',
update: 'Update an existing document. Partial document allowed.',
Expand Down

0 comments on commit 0b2fd83

Please sign in to comment.