Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion AppBuilder/platform/dataFields/ABFieldList.js
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,8 @@ function _getSelectedOptions(field, rowData = {}) {
result = rowData[field.columnName];

try {
if (typeof result == "string") result = JSON.parse(result);
if (typeof result == "string" && result !== "") result = JSON.parse(result);
else if (typeof result == "string" && result === "") result = [];
} catch (e) {
console.error(`Error JSON.pars()ing result [${result}]: `, e);
// just go with what is there
Expand Down
3 changes: 3 additions & 0 deletions AppBuilder/platform/plugins/included/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import viewGrid from "./view_grid/FNAbviewgrid.js";
import viewCarousel from "./view_carousel/FNAbviewcarousel.js";
import viewComment from "./view_comment/FNAbviewcomment.js";
import viewCsvExporter from "./view_csvExporter/FNAbviewcsvexporter.js";
Expand Down Expand Up @@ -30,6 +31,8 @@ const AllPlugins = [
viewPdfImporter,
viewTab,
viewText,
viewDataview,
viewGrid
];

export default {
Expand Down
Loading
Loading