Skip to content

Commit

Permalink
#1909 Increase the limit of columns shown in menas column selection
Browse files Browse the repository at this point in the history
  • Loading branch information
Zejnilovic authored Sep 9, 2021
1 parent 7c341bd commit 162e088
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ class RuleColumnDialog {
}

setSchema(schema) {
this.oDialog.setModel(new sap.ui.model.json.JSONModel(schema), "schema");
const model = new sap.ui.model.json.JSONModel(schema);
model.setSizeLimit(5000);
this.oDialog.setModel(model, "schema");
}

onColumnSubmit() {
Expand Down

0 comments on commit 162e088

Please sign in to comment.