UI: JavaScript resource help popup too wide width issue: use [helpPopupStyle].

This commit is contained in:
deaflynx 2025-04-10 10:53:09 +03:00
parent ced71331ef
commit 713050937c
2 changed files with 2 additions and 2 deletions

View File

@ -80,6 +80,7 @@
(fileNameChanged)="entityForm?.get('fileName').patchValue($event)"> (fileNameChanged)="entityForm?.get('fileName').patchValue($event)">
</tb-file-input> </tb-file-input>
<tb-js-func *ngIf="entityForm.get('resourceSubType').value === ResourceSubType.MODULE" <tb-js-func *ngIf="entityForm.get('resourceSubType').value === ResourceSubType.MODULE"
[helpPopupStyle]="{ width: '1000px' }"
helpId="resource/js-resource-module_fn" helpId="resource/js-resource-module_fn"
formControlName="content" formControlName="content"
required required

View File

@ -14,8 +14,7 @@ JavaScript resource modules are advantageous for reusing custom logic. They can
- Cell content functions. - Cell content functions.
- Custom actions. - Custom actions.
These modules can contain any JavaScript code, facilitating the reuse of specific logic. This includes variables or functions<br> These modules can contain any JavaScript code, facilitating the reuse of specific logic. This includes variables or functions that are exported for use in other parts of the application.
that are exported for use in other parts of the application.
##### Examples ##### Examples
You can declare variables: You can declare variables: