Compare commits

..

4 Commits

Author SHA1 Message Date
gitea-actions b59d0f8a44 chore: bump version to v0.1.29
Build & Push Docker Image / build (push) Failing after 16s
Auto Tag Develop / tag (push) Successful in 5s
2026-04-14 13:12:49 +00:00
Matthieu 5cb8cff4ce Merge branch 'feature/ERP-7-mise-en-place-du-modular-monolith' into develop
Auto Tag Develop / tag (push) Has been cancelled
# Conflicts:
#	docker-compose.yml
2026-04-14 15:11:59 +02:00
gitea-actions c62f054da1 chore: bump version to v0.1.28
Auto Tag Develop / tag (push) Successful in 5s
Build & Push Docker Image / build (push) Successful in 53s
2026-04-14 13:07:45 +00:00
Matthieu be57451d29 fix : change frontend dev port from 3003 to 3004 to avoid conflicts
Auto Tag Develop / tag (push) Has been cancelled
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-09 11:25:17 +02:00
4 changed files with 144 additions and 143 deletions
+1 -1
View File
@@ -1,2 +1,2 @@
parameters:
app.version: '0.1.27'
app.version: '0.1.29'
+2 -1
View File
@@ -16,7 +16,8 @@
<div class="h-full flex-1 flex flex-col min-h-0 min-w-0">
<main
class="flex flex-1 flex-col overflow-y-auto overflow-x-hidden bg-white px-4 pb-24 sm:px-8 lg:px-16">
<div aria-hidden="true"
<div
aria-hidden="true"
class="pointer-events-none sticky top-0 z-30 h-8 flex-shrink-0 bg-white sm:h-12"/>
<slot/>
</main>
+2 -2
View File
@@ -13,7 +13,7 @@
label="Nom d'utilisateur"
autocomplete="username"
group-class="mt-0"
inputClass="w-full"
input-class="w-full"
v-model="username"
/>
@@ -21,7 +21,7 @@
v-model="password"
label="Mot de passe"
autocomplete="current-password"
inputClass="w-full"
input-class="w-full"
/>
<MalioButton
+2 -2
View File
@@ -1,5 +1,5 @@
import type { FetchOptions } from 'ofetch'
import { $fetch, FetchError } from 'ofetch'
import type { FetchOptions , FetchError } from 'ofetch'
import { $fetch } from 'ofetch'
export type AnyObject = Record<string, unknown>