CMS Development

Viktar
Member

Can not save template

SOLVE

Hello!

I have an issue to save template.

 

 

 

{% set queryParameters ='region=' + html_lang %}
{% set all_vacancies = hubdb_table_rows(5688447, queryParameters) %}

 

 

 

 

11HdvTu

 

HL4txbQ

 

But in this case saving works well:

 

 

 

{% set all_vacancies = hubdb_table_rows(5688447, 'region=lt') %}

 

 

 

What is wrong?

 

UPD:

Снимок экрана от 2023-03-03 13-40-52.png

But it should return 0 rows instead the error. 

It looks like a hubspot bug

0 Upvotes
1 Accepted solution
Stephanie-OG
Solution
Key Advisor

Can not save template

SOLVE

Does this work?

 

{% set all_vacancies = hubdb_table_rows(5688447, 'region=en') %}

 

Becuase it looks like the erorr is that there's no region "en" in your HubDB table (in which case you can just add the option to the column).

 


Stephanie O'Gay Garcia

Freelance HubSpot CMS Developer

Website | Contact

View solution in original post

2 Replies 2
Stephanie-OG
Solution
Key Advisor

Can not save template

SOLVE

Does this work?

 

{% set all_vacancies = hubdb_table_rows(5688447, 'region=en') %}

 

Becuase it looks like the erorr is that there's no region "en" in your HubDB table (in which case you can just add the option to the column).

 


Stephanie O'Gay Garcia

Freelance HubSpot CMS Developer

Website | Contact

Viktar
Member

Can not save template

SOLVE

Becuase it looks like the erorr is that there's no region "en" in your HubDB table (in which case you can just add the option to the column).

- it is a solution, but it is wrong. Template should not know about data structure. Database should return 0 rows instead of the error message

0 Upvotes