Updated application to use bool and int instead of boolean and integer. Also added an order by to the getSubscriptionCounties function

This commit is contained in:
2026-09-05 09:39:26 -04:00
parent 55081a11cf
commit 6401534c90
19 changed files with 39 additions and 35 deletions
+1 -1
View File
@@ -4898,7 +4898,7 @@
// Public
getContent() {
return Object.values(this._config.content).map(config => this._resolvePossibleFunction(config)).filter(Boolean);
return Object.values(this._config.content).map(config => this._resolvePossibleFunction(config)).filter(bool);
}
hasContent() {
return this.getContent().length > 0;
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long