Skip to content

Commit

Permalink
Merge pull request #254 from RabotaRu/v3.0.0-fix1
Browse files Browse the repository at this point in the history
Устранена проблема полученая данных DataSet методом pullData плагинов
  • Loading branch information
rpiontik authored Mar 29, 2023
2 parents 57a4e5d + b466521 commit e92b870
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/frontend/components/Docs/DocHubDoc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@
if (!expression) {
return this.dataProvider.releaseData(this.resolvePath(), params || this.params);
} else
return query.expression(expression || this.profile?.source, self_, params).evaluate(context);
return this.dataProvider.getData(context, { source: expression }, params);
// return query.expression(expression || this.profile?.source, self_, params).evaluate(context);
}
}
};
Expand Down

0 comments on commit e92b870

Please sign in to comment.