Merge branch 'spreadsheet' into develop

This commit is contained in:
Vitalii Kiiko
2026-03-25 14:23:52 +01:00
19 changed files with 780 additions and 6 deletions

View File

@@ -1586,6 +1586,7 @@ const DomandaEditInstructorManager = () => {
if (!tableColumns) {
tableColumns = head(o.settings.filter(o => o.name === 'criteria_table_columns'));
}
const template = head(o.settings.filter(s => s.name === 'template'));
const step = head(o.settings.filter(o => o.name === 'step'));
const mime = head(o.settings.filter(o => o.name === 'mime'));
const formula = head(o.settings.filter(o => o.name === 'formula'));
@@ -1645,6 +1646,7 @@ const DomandaEditInstructorManager = () => {
sourceId={id}
useGrouping={false}
tableColumns={tableColumns ? tableColumns.value : {}}
template={template ? template.value : null}
/>
})}
</form>