Skip to content

Commit

Permalink
bugfix: data imports
Browse files Browse the repository at this point in the history
  • Loading branch information
devezhao committed May 11, 2020
1 parent 487f265 commit 8c8b8d4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>com.rebuild</groupId>
<artifactId>rebuild</artifactId>
<packaging>war</packaging>
<version>1.9.1</version>
<version>1.9.2</version>
<name>rebuild</name>
<description>Building your business-systems free!</description>
<url>https://getrebuild.com/</url>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/rebuild/server/Application.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ public final class Application {

/** Rebuild Version
*/
public static final String VER = "1.9.1";
public static final String VER = "1.9.2";
/** Rebuild Build
*/
public static final int BUILD = 1091;
public static final int BUILD = 1092;

/** Logging for Global
*/
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/assets/js/entityhub/data-importer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ const render_fieldsMapping = (columns, fields) => {
const $tbody = $('#fieldsMapping tbody').empty()
$(columns).each(function (idx, item) {
const $tr = $('<tr data-col="' + idx + '"></tr>').appendTo($tbody)
$('<td><em>#' + (idx + 1) + '</em> ' + item + '<i class="zmdi zmdi-arrow-right"></i></td>').appendTo(tr)
$('<td><em>#' + (idx + 1) + '</em> ' + item + '<i class="zmdi zmdi-arrow-right"></i></td>').appendTo($tr)
const $td = $('<td></td>').appendTo($tr)
fields_select.clone().appendTo($td)
$('<td class="pl-3"></td>').appendTo($tr)
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/assets/js/entityhub/data-reports.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class ReportList extends ConfigList {

constructor(props) {
super(props)
this.requestUrl = `/admin/datas/data-reports/list`
this.requestUrl = '/admin/datas/data-reports/list'
}

render() {
Expand Down

0 comments on commit 8c8b8d4

Please sign in to comment.