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:
Edwin Kempin
2012-11-16 00:57:00 +01:00
parent e59175b607
commit d3aade851d

View File

@@ -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() {
}