@@ -201,7 +201,7 @@ function openActionDetails() {
async function handleClick() {
if (popupOnStart.value === 'history') {
- router.push(`/action/${props.actionData.bindingId}`)
+ openActionDetails()
return
}
if (props.actionData.arguments && props.actionData.arguments.length > 0) {
@@ -29,12 +29,6 @@ func WatchFilesInDirectory(cfg *config.Config, ex *executor.Executor) {
scheduleExec(act, cfg, ex, filename)
})
}(action, dirname)
-
- go func(act *config.Action, dir string) {
- filehelper.WatchDirectoryCreate(dir, func(filename string) {
- scheduleExec(act, cfg, ex, filename)
- })
- }(action, dirname)