CMS Development

Viktar
Miembro

Can not save template

resolver

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 Me gusta
1 Soluciones aceptada
Stephanie-OG
Solución
Asesor destacado

Can not save template

resolver

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

Ver la solución en mensaje original publicado

2 Respuestas 2
Stephanie-OG
Solución
Asesor destacado

Can not save template

resolver

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
Miembro

Can not save template

resolver

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 Me gusta