Fix retrieving of the projects default dashboard
In the JavaScript code it's not camel case, but names are converted to lowercase with '_' to seperate the words. Change-Id: I2bfd7ed745f3461f9517e8479eed9e31e5398486 Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:
@@ -23,7 +23,7 @@ public class DashboardInfo extends JavaScriptObject {
|
||||
public final native String projectName() /*-{ return this.project_name; }-*/;
|
||||
public final native String description() /*-{ return this.description; }-*/;
|
||||
public final native String parameters() /*-{ return this.parameters; }-*/;
|
||||
public final native boolean isDefault() /*-{ return this.isDefault ? true : false; }-*/;
|
||||
public final native boolean isDefault() /*-{ return this.is_default ? true : false; }-*/;
|
||||
|
||||
protected DashboardInfo() {
|
||||
}
|
||||
|
Reference in New Issue
Block a user