Skip to content

Commit

Permalink
Fix reuse compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
daanboer committed Jun 3, 2024
1 parent cdf1630 commit dac73df
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/src/app/author/set/[id]/edit/comment-section.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: LXCat team
//
// SPDX-License-Identifier: AGPL-3.0-or-later

import { MaybePromise } from "@/app/api/util";
import {
ActionIcon,
Expand Down
6 changes: 6 additions & 0 deletions app/src/app/author/set/[id]/edit/json-tab.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: LXCat team
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

.mantine-CodeHighlight-root .mantine-ScrollArea-viewport {
max-height: calc(100vh - 280px);
}
4 changes: 4 additions & 0 deletions app/src/app/author/set/[id]/edit/reference-section.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: LXCat team
//
// SPDX-License-Identifier: AGPL-3.0-or-later

import { MaybePromise } from "@/app/api/util";
import { ReferenceRef } from "@lxcat/schema/reference";
import {
Expand Down
4 changes: 4 additions & 0 deletions app/src/app/author/set/[id]/edit/species-input.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: LXCat team
//
// SPDX-License-Identifier: AGPL-3.0-or-later

"use client";

import { MaybePromise } from "@/app/api/util";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* SPDX-FileCopyrightText: LXCat team
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

.root {
:global(.mantine-Accordion-item):first-child {
border-top: 0;
Expand Down
4 changes: 4 additions & 0 deletions app/src/app/author/set/add/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: LXCat team
//
// SPDX-License-Identifier: AGPL-3.0-or-later

import { options } from "@/auth/options";
import { Unauthorized } from "@/shared/unauthorized";
import { db } from "@lxcat/database";
Expand Down
4 changes: 4 additions & 0 deletions app/src/app/author/set/empty-set.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: LXCat team
//
// SPDX-License-Identifier: AGPL-3.0-or-later

export const emptySet = () => (
{
name: "",
Expand Down

0 comments on commit dac73df

Please sign in to comment.