Skip to content

Commit

Permalink
Merge pull request #5050 from systeminit/jkeiser/use-wrecking-ball-to…
Browse files Browse the repository at this point in the history
…-gently-reload-func-bindings

Fetch func list on SchemaVariantReplaced/Updated
  • Loading branch information
stack72 authored Dec 2, 2024
2 parents ec932af + ab84dab commit 2dae67c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app/web/src/store/func/funcs.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -786,6 +786,18 @@ export const useFuncStore = () => {
this.FETCH_FUNC_LIST();
},
},
{
eventType: "SchemaVariantUpdated",
callback: () => {
this.FETCH_FUNC_LIST();
},
},
{
eventType: "SchemaVariantReplaced",
callback: () => {
this.FETCH_FUNC_LIST();
},
},
{
eventType: "SchemaVariantCloned",
callback: () => {
Expand Down

0 comments on commit 2dae67c

Please sign in to comment.