wolfphantom
03-25-2024Cloud Apps
Vue: useGetDashboardModel throws error
When using the mentioned composable the REST API call that occurs returns a valid status 200 and includes a response body. However, the composable is resolving as "isError = true" with the following message: "Error: Can't extract props for unsupported widget type - wiserFilterWidget"
(I now have a suspicion this may refer to some 3rd party item that was installed on the Sisense side when this dashboard was created.)
Edit: also seeing the error referencing "richtexteditor" as well
const dashboardOid = ref('xxxxx');
const includeWidgets = ref(true); // Decide whether to include widgets in the dashboard model
const { dashboard, isLoading, isError, error } = useGetDashboardModel({
dashboardOid,
includeWidgets,
});