Merge branch 'RMLWorkorder/fix-get-companies' into 'master'

fixed get companies

See merge request fronk/thetool!1703
This commit is contained in:
Luca Haid
2025-09-02 11:36:53 +00:00
2 changed files with 2 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ class WorkorderTenantConfigModel extends TTCrudBaseModel {
public string $name;
public string $documentationTypes; // JSON
public string $workorderCreationFilters; // JSON
public string $interventionTypes; // JSON
public ?string $interventionTypes; // JSON
public int $civilEngineeringDocsRequired;
public int $create;
public int $createBy;

View File

@@ -91,6 +91,7 @@ Vue.component('tt-select', {
methods: {
toggleDropdown() {
if (this.disabled) return;
if (!this.open) this.$emit('focus');
this.open = !this.open;
},