[pve-devel] [PATCH widget-toolkit 1/1] fix: utils: correctly append id to task description text
Michael Köppl
m.koeppl at proxmox.com
Tue Sep 30 18:07:56 CEST 2025
ping, still applies
On 9/16/25 2:57 PM, Michael Köppl wrote:
> Without this change, only the value of the type variable would be used
> as the task description for task types without an entry in the
> task_desc_table.
>
> Signed-off-by: Michael Köppl <m.koeppl at proxmox.com>
> ---
> src/Utils.js | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/Utils.js b/src/Utils.js
> index a0c6ca5..236390a 100644
> --- a/src/Utils.js
> +++ b/src/Utils.js
> @@ -770,7 +770,7 @@ Ext.define('Proxmox.Utils', {
> if (!farray) {
> text = type;
> if (id) {
> - type += ' ' + id;
> + text += ' ' + id;
> }
> return text;
> } else if (Ext.isFunction(farray)) {
More information about the pve-devel
mailing list