Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
waralexrom committed Sep 29, 2024
1 parent 531b821 commit 297499c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ export class BaseTimeDimension extends BaseFilter {
return null;
}

const res = super.selectColumns();
return res;
return super.selectColumns();
}

public hasNoRemapping() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,6 @@ export class CubeSymbols {
const funcDefinition = func.toString();
if (!this.funcArgumentsValues[funcDefinition]) {
const match = funcDefinition.match(FunctionRegex);

if (match && (match[1] || match[2] || match[3])) {
this.funcArgumentsValues[funcDefinition] = (match[1] || match[2] || match[3]).split(',').map(s => s.trim());
} else if (match) {
Expand Down

0 comments on commit 297499c

Please sign in to comment.