File tree Expand file tree Collapse file tree
packages/ecc-client-ga4gh-wes/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -414,6 +414,13 @@ export class ECCClientGa4ghWesRunCreate extends LitElement {
414414 }
415415
416416 private resetForm ( ) : void {
417+ this . dispatchEvent (
418+ new CustomEvent ( "ecc-run-create-reset" , {
419+ bubbles : true ,
420+ composed : true ,
421+ } )
422+ ) ;
423+
417424 this . formData = {
418425 workflowUrl : "" ,
419426 workflowType : this . defaultWorkflowType ,
Original file line number Diff line number Diff line change 1+ export type EccRunCreateResetEvent = CustomEvent < Record < string , any > > ;
2+
3+ declare global {
4+ interface GlobalEventHandlersEventMap {
5+ "ecc-run-create-reset" : EccRunCreateResetEvent ;
6+ }
7+ }
Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ export type { EccRunCreateFailedEvent } from "./ecc-run-create-failed.js";
33export type { EccRunsChangedEvent } from "./ecc-runs-changed.js" ;
44export type { EccRunsSelectedEvent } from "./ecc-runs-selected.js" ;
55export type { EccRunLogChangedEvent } from "./ecc-run-log-changed.js" ;
6+ export type { EccRunCreateResetEvent } from "./ecc-run-create-reset.js" ;
You can’t perform that action at this time.
0 commit comments