diff --git a/Dockerfile b/Dockerfile index a2b4e40..8606932 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1.7-labs -FROM mcr.microsoft.com/dotnet/sdk:9.0-preview-alpine AS build1 +FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build1 WORKDIR /src COPY ./.config ./ @@ -10,7 +10,7 @@ WORKDIR Groceries COPY ./Groceries/libman.json ./ RUN dotnet libman restore -FROM mcr.microsoft.com/dotnet/sdk:9.0-preview-alpine AS build2 +FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build2 WORKDIR /src COPY ./Groceries.sln ./ @@ -23,7 +23,7 @@ COPY . ./ COPY --from=build1 /src ./ RUN dotnet publish --no-restore --output /out -FROM mcr.microsoft.com/dotnet/aspnet:9.0-preview-alpine-composite AS base +FROM mcr.microsoft.com/dotnet/aspnet:9.0-alpine-composite AS base WORKDIR /groceries COPY --from=build2 /out . diff --git a/Groceries.Data/Groceries.Data.csproj b/Groceries.Data/Groceries.Data.csproj index a911d72..0d19dfd 100644 --- a/Groceries.Data/Groceries.Data.csproj +++ b/Groceries.Data/Groceries.Data.csproj @@ -12,7 +12,7 @@ - + diff --git a/Groceries/libman.json b/Groceries/libman.json index a4e3b9a..78c4661 100644 --- a/Groceries/libman.json +++ b/Groceries/libman.json @@ -7,7 +7,7 @@ "destination": "wwwroot/lib/inter/" }, { - "library": "@hotwired/turbo@8.0.4", + "library": "@hotwired/turbo@8.0.10", "destination": "wwwroot/lib/hotwired/turbo/" }, { diff --git a/Groceries/wwwroot/js/controllers/modal.js b/Groceries/wwwroot/js/controllers/modal.js index 2e55bbe..a6e8d69 100644 --- a/Groceries/wwwroot/js/controllers/modal.js +++ b/Groceries/wwwroot/js/controllers/modal.js @@ -13,7 +13,7 @@ export default class ModalController extends Controller { if (!this.element.open) { return; } - if (event.type === "turbo:submit-end" && (event.detail.formSubmission.method === "get" || !event.detail.success)) { + if (event.type === "turbo:submit-end" && (event.detail.formSubmission.method === "GET" || !event.detail.success)) { // Don't close modal if form method was GET or submission failed return; }