Issue: Reset button not working in the webform after form submit.
Solution: use jquery to force reset button like this:
(function ($, Drupal) {
'use strict';
$('.webform-button--reset').on('click', function (e) {
e.preventDefault();
e.stopImmediatePropagation();
location.href = location.origin + location.pathname;
return false;
});
})(jQuery, Drupal);