Compare commits

...
Sign in to create a new pull request.

7 commits

Author SHA1 Message Date
isUnknown
c9aefe7ecf #179 2025-10-15 16:17:30 +02:00
isUnknown
d590c9ac45 fix CI 2025-10-08 15:58:25 +02:00
isUnknown
186f7b80ba fix CI 2025-10-08 15:56:15 +02:00
isUnknown
1dad073ea1 #178 2025-10-08 15:54:17 +02:00
isUnknown
729d72e18a fix CI 2025-10-08 15:48:35 +02:00
isUnknown
95bdf4615d fix CI 2025-10-08 15:47:45 +02:00
isUnknown
5e78e67fc8 remove cache busting 2025-10-08 15:34:53 +02:00
3 changed files with 3 additions and 3 deletions

View file

@ -56,7 +56,7 @@ deploy_preprod:
build_prod:
stage: build
only:
- prod
- main
image: composer:2
script:
- apk add --no-cache nodejs npm

View file

@ -159,7 +159,7 @@ class ProjectPage extends NotificationsPage {
"physicalSample" => "échantillon physique",
];
return $stepsLabel[$this->currentStep()->value()];
return $stepsLabel[$this->currentStep()->value()] ?? "brief";
}
// public function printManagers() {

View file

@ -14,7 +14,7 @@ export default defineConfig(({ mode }) => {
},
},
sourcemap: mode === 'staging',
minify: mode === 'production' ? 'esbuild' : false,
minify: mode === 'production',
},
server: {
watch: {