Skip to content

Commit

Permalink
Build html
Browse files Browse the repository at this point in the history
  • Loading branch information
Nazar Usov authored and Nazar Usov committed Sep 18, 2024
1 parent e6ca96d commit 8b6278b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions html/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -25081,7 +25081,7 @@ class PaginationService {
return offset;
}
calcPages(data) {
var _a;
var _a, _b;
if (data.total_history_items && data && data.history) {
this.variables.currentWallet.totalPages = Math.ceil(data.total_history_items / this.variables.count);
this.variables.currentWallet.totalPages > this.variables.maxPages
Expand All @@ -25091,7 +25091,7 @@ class PaginationService {
.map((value, index) => value + index));
}
else if (this.variables.currentWallet.restore) {
this.variables.currentWallet.totalPages = Math.ceil(((_a = data.history.length) !== null && _a !== void 0 ? _a : 0) / this.variables.count);
this.variables.currentWallet.totalPages = Math.ceil(((_b = (_a = data.history) === null || _a === void 0 ? void 0 : _a.length) !== null && _b !== void 0 ? _b : 0) / this.variables.count);
this.variables.currentWallet.totalPages > this.variables.maxPages
? (this.variables.currentWallet.pages = new Array(5).fill(1).map((value, index) => value + index))
: (this.variables.currentWallet.pages = new Array(this.variables.currentWallet.totalPages)
Expand Down Expand Up @@ -25321,7 +25321,7 @@ __webpack_require__.r(__webpack_exports__);



const buildTime = '2024-09-18T09:21:23.110Z';
const buildTime = '2024-09-18T12:08:28.621Z';
if (_environments_environment__WEBPACK_IMPORTED_MODULE_1__.environment.production) {
(0,_angular_core__WEBPACK_IMPORTED_MODULE_3__.enableProdMode)();
}
Expand Down
2 changes: 1 addition & 1 deletion html/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion html_source/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
import 'lodash';

export const buildTime = '2024-09-18T09:21:23.110Z';
export const buildTime = '2024-09-18T12:08:28.621Z';

if (environment.production) {
enableProdMode();
Expand Down

0 comments on commit 8b6278b

Please sign in to comment.