Photo rendberakása + EF migráció

This commit is contained in:
2025-04-02 10:32:27 +02:00
parent fe7b52efde
commit 12bf69aadd
16 changed files with 1913 additions and 19 deletions
+6
View File
@@ -192,3 +192,9 @@ function renderAnswerType(data) {
}
return data;
}
function renderAnswerPhoto(data, row) {
if (row.checkListTemplateRowDTO.answerType === 'P') {
return `<img src="${data}" alt="Image" style="height: 100px; width: auto;" />`
}
return data;
}