small changes for better readability

This commit is contained in:
Lisa Durand 2023-03-29 10:26:03 +02:00
parent 044d03b524
commit 518d075dc9
2 changed files with 3 additions and 3 deletions

View file

@ -18,9 +18,9 @@ import { toggleCondidentielExplanation } from '../new_design/avis';
import {
showMotivation,
motivationCancel,
motivationCancelBatchDropdown,
showImportJustificatif,
showDeleteJustificatif,
motivationCancelBatch,
deleteJustificatif
} from '../new_design/instruction-button';
import { showFusion, showNewAccount } from '../new_design/fc-fusion';
@ -33,9 +33,9 @@ const DS = {
toggleCondidentielExplanation,
showMotivation,
motivationCancel,
motivationCancelBatchDropdown,
showImportJustificatif,
showDeleteJustificatif,
motivationCancelBatch,
deleteJustificatif,
showFusion,
showNewAccount

View file

@ -21,7 +21,7 @@ export function motivationCancel() {
document.querySelectorAll('.js_delete_motivation').forEach(hide);
}
export function motivationCancelBatch() {
export function motivationCancelBatchDropdown() {
document.querySelector('#dropdown_batch').classList.remove('open');
hide(document.querySelector('.js_delete_motivation'));
}