File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/kotlin/com/lambda/config Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -67,10 +67,10 @@ open class AutomationConfig(
6767 companion object {
6868 context(module: Module )
6969 fun automationConfig (name : String = module.name, edits : (AutomationConfig .() -> Unit )? = null): AutomationConfig =
70- AutomationConfig (" $name Automation Config" ).apply { edits?.invoke(this ) }
70+ AutomationConfig (" Default $name Automation Config" ).apply { edits?.invoke(this ) }
7171
7272 fun automationConfig (name : String , edits : (AutomationConfig .() -> Unit )? = null): AutomationConfig =
73- AutomationConfig (" $name Automation Config" ).apply { edits?.invoke(this ) }
73+ AutomationConfig (" Default $name Automation Config" ).apply { edits?.invoke(this ) }
7474
7575 object DEFAULT : AutomationConfig(" Default Automation Config" ) {
7676 val renders by setting(" Render" , false ).group(Group .Render )
You can’t perform that action at this time.
0 commit comments