fix(itam): field slug no longer avail, use str

ref: #871 #820
This commit is contained in:
2025-07-20 11:41:56 +09:30
parent c154cef6d5
commit 049cf6577e
2 changed files with 2 additions and 2 deletions

View File

@ -297,7 +297,7 @@ class ConfigGroups(
state = 'absent'
software_action = {
"name": software.software.slug,
"name": str(Software),
"state": state
}

View File

@ -476,7 +476,7 @@ class Device(
state = 'absent'
software_action = {
"name": software.software.slug,
"name": str(Software),
"state": state
}