fix(salix): change parse method
gitea/salix/pipeline/pr-master This commit looks good Details

This commit is contained in:
Javier Segarra 2024-10-04 07:09:59 +00:00
parent 2b0d9bd0b4
commit 9843d001b5
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ export default class App {
]}
};
const hasId = !isNaN(parseFloat(route.split('/')[1]));
const hasId = !isNaN(parseInt(route.split('/')[1]));
if (this.logger.$params.q) {
let tableValue = this.logger.$params.q;