Skip to content

Commit

Permalink
Merge branch 'dev' into roquej-20241024-medications
Browse files Browse the repository at this point in the history
roquej authored Dec 12, 2024
2 parents e6e248d + 4070c66 commit ad44820
Showing 4 changed files with 2,035 additions and 1 deletion.
2,027 changes: 2,027 additions & 0 deletions pages/js/duster/new-project/dist/assets/index-1d978ef1.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions pages/js/duster/new-project/dist/assets/index-4f7a9f65.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions pages/js/duster/new-project/src/App.vue
Original file line number Diff line number Diff line change
@@ -522,6 +522,13 @@ const getDusterMetadata = (metadataUrl:string) => {
};
const loadEditMode = () => {
// add an empty array for missing user-defined labs to each data collection window
// retroactive support for user-defined labs feature for older projects
projectConfig.initial_design.collectionWindows.forEach((cw: any) => {
cw.data.ud_labs = cw.data.ud_labs ? cw.data.ud_labs : [];
});
initialDesign.value = projectConfig.initial_design;
// transform and load researcher-provided data
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<template>

<div class="grid">
<div
v-for="(col, index) in filtered"

0 comments on commit ad44820

Please sign in to comment.