mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-03 20:09:42 +00:00
Compare commits
1 Commits
2.16.2
...
fix-compil
Author | SHA1 | Date | |
---|---|---|---|
88c6e0e0d3
|
@@ -1,3 +0,0 @@
|
|||||||
## v2.16.2 - 2024-02-21
|
|
||||||
### Fixed
|
|
||||||
* Check for null values in closing motive of parcours d'accompagnement for correct rendering of template
|
|
@@ -6,10 +6,6 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
|||||||
and is generated by [Changie](https://github.com/miniscruff/changie).
|
and is generated by [Changie](https://github.com/miniscruff/changie).
|
||||||
|
|
||||||
|
|
||||||
## v2.16.2 - 2024-02-21
|
|
||||||
### Fixed
|
|
||||||
* Check for null values in closing motive of parcours d'accompagnement for correct rendering of template
|
|
||||||
|
|
||||||
## v2.16.1 - 2024-02-09
|
## v2.16.1 - 2024-02-09
|
||||||
### Fixed
|
### Fixed
|
||||||
* Force bootstrap version to avoid error in builds with newer version
|
* Force bootstrap version to avoid error in builds with newer version
|
||||||
|
@@ -2,14 +2,14 @@ import AddressDetailsButton from "../../vuejs/_components/AddressDetails/Address
|
|||||||
import {createApp} from "vue";
|
import {createApp} from "vue";
|
||||||
import {createI18n} from "vue-i18n";
|
import {createI18n} from "vue-i18n";
|
||||||
import {_createI18n} from "../../vuejs/_js/i18n";
|
import {_createI18n} from "../../vuejs/_js/i18n";
|
||||||
import {Address} from "../../types";
|
import {Address, AddressRefStatus} from "../../types";
|
||||||
|
|
||||||
const i18n = _createI18n({});
|
const i18n = _createI18n({});
|
||||||
|
|
||||||
document.querySelectorAll<HTMLSpanElement>('span[data-address-details]').forEach((el) => {
|
document.querySelectorAll<HTMLSpanElement>('span[data-address-details]').forEach((el) => {
|
||||||
const dataset = el.dataset as {
|
const dataset = el.dataset as {
|
||||||
addressId: string,
|
addressId: string,
|
||||||
addressRefStatus: string,
|
addressRefStatus: AddressRefStatus,
|
||||||
};
|
};
|
||||||
|
|
||||||
const app = createApp({
|
const app = createApp({
|
||||||
|
@@ -15,7 +15,7 @@ import AddressModal from "./AddressModal.vue";
|
|||||||
|
|
||||||
export interface AddressModalContentProps {
|
export interface AddressModalContentProps {
|
||||||
address_id: number;
|
address_id: number;
|
||||||
address_ref_status: AddressRefStatus | null;
|
address_ref_status: AddressRefStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
const data = reactive<{
|
const data = reactive<{
|
||||||
|
@@ -35,11 +35,9 @@
|
|||||||
<div class="warnings">
|
<div class="warnings">
|
||||||
<div class="alert alert-danger">
|
<div class="alert alert-danger">
|
||||||
<h2>{{ 'This course is closed'|trans }}</h2>
|
<h2>{{ 'This course is closed'|trans }}</h2>
|
||||||
{% if accompanyingCourse.closingMotive is not same as null %}
|
|
||||||
<p>
|
<p>
|
||||||
{{ 'Closing motive'|trans }} : {{ accompanyingCourse.closingMotive.name|localize_translatable_string }}
|
{{ 'Closing motive'|trans }} : {{ accompanyingCourse.closingMotive.name|localize_translatable_string }}
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Reference in New Issue
Block a user