1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

Feature #3268: Fix pageLength type

This commit is contained in:
Carlos Martín 2015-07-10 12:41:52 +02:00
parent 02adb9463d
commit 3172d9bb04

View File

@ -154,7 +154,7 @@ define(function(require) {
this.initSelectResourceTableSelect();
} else {
this.dataTableOptions.pageLength = config['page_length'];
this.dataTableOptions.pageLength = parseInt(config['page_length']);
}
this.dataTable = $('#' + this.dataTableId).dataTable(this.dataTableOptions);