Adding in a check for when there are no screen actions that need to be performed - #7592.
This commit is contained in:
parent
bf1587f82b
commit
f9224df941
File diff suppressed because it is too large
Load Diff
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue