I see what my problem was. I wasn't actually getting Webform 6.0.8 installed. I forced the install and it works without error.
Leaving this here for anyone else who might have the same error.
Thanks for the reply. I see what I was doing wrong.
Yes I installed 6.0.8 and it worked. Thank you.
Hello everyone. I am a noob to drupal. I am experiencing the same issues as the OP.
Unfortunately I cannot upgrade from 8.9.20 yet. I am a little confused. Which version of webforms is the last version that is compatible with 8.9.20?
Will that version fix the issues that me and the OP are having?
Thanks
Somehow the contents of my ClaimForm.php got cleared out.
I put the code back in and it works great now.
Thanks. You got me on the right path.
Thanks for the reply. But it seems like it's already there.
/*
Defines the Claim entity.
@ingroup customer_claims
@ContentEntityType(
id = "claim",
label = @Translation("Claim"),
handlers = {
"view_builder" = "Drupal\Core\Entity\EntityViewBuilder",
"list_builder" = "Drupal\customer_claims\ClaimListBuilder",
"views_data" = "Drupal\customer_claims\Entity\ClaimViewsData",
"form" = {
"default" = "Drupal\customer_claims\Form\ClaimForm",
"add" = "Drupal\customer_claims\Form\ClaimForm",
"edit" = "Drupal\customer_claims\Form\ClaimForm",
"delete" = "Drupal\customer_claims\Form\ClaimDeleteForm",
},
"access" = "Drupal\customer_claims\ClaimAccessControlHandler",
"route_provider" = {
"html" = "Drupal\customer_claims\ClaimHtmlRouteProvider",
},
},