gns3-web-ui
gns3-web-ui copied to clipboard
usage setting in template does not show in project
If usage is configured in a template through the web ui and a node of that type is then inserted in a project, usage inside "Show node information" says "No usage information has been provided for this node.". Looking in the project .gns3 file, the usage is there.
This is on version 2.2.34, although the web ui says v2.2.33.
John
I confirm the bug. Here is how to reproduce:
Edit a template and change the usage info:

Drag and drop the template on the canvas to create node, then right click to show the node information

I can also confirm that the server sends the correct text in the usage field using the API endpoint /v3/templates
{
"template_id": "573a94e0-7f64-46b6-b148-940177440721",
"name": "OpenBSD",
"version": "5.8",
"category": "guest",
"default_name_format": "{name}-{0}",
"symbol": ":/symbols/classic/qemu_guest.svg",
"builtin": false,
"template_type": "qemu",
"compute_id": "local",
"usage": "User root, password gns3 (TEST!)",
"created_at": "2022-06-20T05:36:11",
"updated_at": "2022-11-02T16:38:22",
"kernel_image": "",
<...>
}
This seems to work in v2.2.37. We must have fixed it somehow...