1
0
Fork 0
mirror of synced 2024-10-06 04:54:52 +13:00

Adding in a check for when there are no screen actions that need to be performed - #7592.

This commit is contained in:
mike12345567 2022-09-02 18:14:08 +01:00
parent bf1587f82b
commit f9224df941
2 changed files with 1100 additions and 21 deletions

File diff suppressed because it is too large Load diff

View file

@ -3,7 +3,7 @@
import Component from "./Component.svelte"
import Provider from "./context/Provider.svelte"
import { onMount, getContext } from "svelte"
import { enrichButtonActions } from "utils/buttonActions.js"
import { enrichButtonActions } from "../utils/buttonActions.js"
export let params = {}
@ -29,7 +29,9 @@
...$context,
url: params,
})
actions()
if (actions != null) {
actions()
}
}
})
</script>