Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Publish
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64
Expand Down
574 changes: 287 additions & 287 deletions .yarn/releases/yarn-4.5.3.cjs → .yarn/releases/yarn-4.6.0.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.5.3.cjs
yarnPath: .yarn/releases/yarn-4.6.0.cjs
33 changes: 16 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,30 @@
"preview": "vite preview"
},
"dependencies": {
"@mantine/core": "^7.14.3",
"@mantine/dropzone": "^7.14.3",
"@mantine/hooks": "^7.14.3",
"@mantine/notifications": "^7.14.3",
"@tabler/icons-react": "^3.24.0",
"@mantine/core": "^7.16.0",
"@mantine/dropzone": "^7.16.0",
"@mantine/hooks": "^7.16.0",
"@mantine/notifications": "^7.16.0",
"@tabler/icons-react": "^3.28.1",
"compressorjs": "^1.2.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-ga4": "^2.1.0",
"react-router-dom": "^7.0.2"
"react-router-dom": "^7.1.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.16.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.16.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.13.0",
"postcss": "^8.4.49",
"eslint": "^9.18.0",
"eslint-plugin-react": "^7.37.4",
"globals": "^15.14.0",
"postcss": "^8.5.1",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.4.2",
"vite": "^6.0.3"
},
"packageManager": "[email protected]"
"vite": "^6.0.7"
}
}
1 change: 1 addition & 0 deletions src/components/DropzoneButton/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const DropzoneButton = ({ popOverOpen, setPopOverOpen, changeFiles }) => {
}}
className={classes.dropzone}
radius="md"
inputProps={{ "aria-label": "Picture" }}
accept={[
MIME_TYPES.png,
MIME_TYPES.jpeg,
Expand Down
8 changes: 7 additions & 1 deletion src/components/HeaderBar/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,13 @@ const HeaderBar = () => {
</ActionIcon>
</Tooltip>

<Burger opened={opened} onClick={toggle} hiddenFrom="xs" size="sm" />
<Burger
aria-label="Burger menu"
opened={opened}
onClick={toggle}
hiddenFrom="xs"
size="sm"
/>
<Drawer
opened={opened}
onClose={() => toggle()}
Expand Down
6 changes: 6 additions & 0 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,10 @@ import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
// /esm/icons/index.mjs only exports the icons statically, so no separate chunks are created
"@tabler/icons-react": "@tabler/icons-react/dist/esm/icons/index.mjs",
},
},
});
Loading
Loading