You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The disk dropdown in StoppedExperiment.vue is not populating with the selected disk. The dropdown does contain the list of all disks though.
It looks like the issue is that the dropdown option list contains full image paths (e.g., /path/to/image.qcow2) while prop.row.disk is just an image name (e.g., image.qcow2). So since it doesn't match any options, it remains blank.
I think the issue arose with this commit. The call to util.GetMMFullPath was removed. Adding that back fixes things.
I also see that function is still used in Get just not List.
I can create a PR with the change, just wasn't sure if I was missing context
The text was updated successfully, but these errors were encountered:
The disk dropdown in
StoppedExperiment.vue
is not populating with the selected disk. The dropdown does contain the list of all disks though.It looks like the issue is that the dropdown
option
list contains full image paths (e.g.,/path/to/image.qcow2
) whileprop.row.disk
is just an image name (e.g.,image.qcow2
). So since it doesn't match any options, it remains blank.I think the issue arose with this commit. The call to
util.GetMMFullPath
was removed. Adding that back fixes things.I also see that function is still used in
Get
just notList
.I can create a PR with the change, just wasn't sure if I was missing context
The text was updated successfully, but these errors were encountered: