Skip to content

Commit

Permalink
Fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
PaddiM8 committed Mar 2, 2024
1 parent 998f04f commit 14dfe3e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
WORKDIR /app
EXPOSE 5065

FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
WORKDIR /src
COPY ["api/Planera.csproj", "api/"]
RUN dotnet restore "api/Planera.csproj"
Expand Down
4 changes: 2 additions & 2 deletions web/src/lib/components/editor/Editor.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
FloatingLinkEditorPlugin,
CodeHighlightPlugin,
CodeActionMenuPlugin,
} from "svelte-lexical";
} from "@paddim8/svelte-lexical";
import "./editor.css";
import TaskEditorTheme from "$lib/components/editor/ticketEditorTheme";
import {createEventDispatcher, onMount} from "svelte";
Expand Down Expand Up @@ -222,4 +222,4 @@
border: var(--border)
border-radius: var(--radius)
overflow: hidden
</style>
</style>

0 comments on commit 14dfe3e

Please sign in to comment.