Compare commits

..

No commits in common. "87f287048807199c56b7cca59c13f03f64ce38a4" and "80482af5c09bd827f7d2327a398954f6204577d3" have entirely different histories.

2 changed files with 7 additions and 9 deletions

View File

@ -30,6 +30,8 @@ cd organizrr
### 2. Install JS Dependencies
```bash
pnpm install
# or
npm install
```

View File

@ -306,7 +306,7 @@ function Organizrr() {
</Group>
</AppShell.Header>
<AppShell.Navbar p="md" bg="var(--mantine-primary-color-0)">
<AppShell.Navbar p="md" bg="var(--mantine-primary-color-1)">
<AppShell.Section>
<Group>
<IconFiles />
@ -396,7 +396,7 @@ function Organizrr() {
/>
</Group>
{activeFile !== null && (
<Paper p="md" bg="var(--mantine-primary-color-0)">
<Paper p="md" bg="var(--mantine-primary-color-1)">
<Stack>
<Autocomplete
label="Category"
@ -482,8 +482,7 @@ function Organizrr() {
doc.id ===
form.values.files[activeFile]?.documents[0].id
)
?.file.name.toLowerCase()
.endsWith(".pdf") && (
?.file.name.endsWith(".pdf") && (
<Stack
w={300}
key={form.values.files[activeFile]?.documents.length}
@ -496,10 +495,7 @@ function Organizrr() {
}))}
onChange={handleDocumentSelect}
/>
<Dropzone
onDrop={handleDocumentDrop}
accept={["application/pdf"]}
/>
<Dropzone onDrop={handleDocumentDrop} />
</Stack>
)}
</Group>
@ -515,7 +511,7 @@ function Organizrr() {
</Stack>
</AppShell.Main>
<AppShell.Aside p="md" bg="var(--mantine-primary-color-0)">
<AppShell.Aside p="md" bg="var(--mantine-primary-color-1)">
<Stack align="center">
<Group style={{ alignSelf: "start" }}>
<IconEye /> <Title order={3}>Vorschau</Title>