We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a8ff51 commit 0e86b34Copy full SHA for 0e86b34
Lib/Shared/Volantis.Component/ComponentManager/ComponentManagerBase.ahk
@@ -129,7 +129,19 @@ class ComponentManagerBase {
129
}
130
131
Names() {
132
- return this.All(ContainerQuery.RESULT_TYPE_NAMES)
+ names := []
133
+
134
+ for index, name in this.All(ContainerQuery.RESULT_TYPE_NAMES) {
135
+ start := 0
136
137
+ if (this.servicePrefix) {
138
+ start := StrLen(this.servicePrefix)+1
139
+ }
140
141
+ names.Push(SubStr(name, start))
142
143
144
+ return names
145
146
147
Query(resultType := "") {
0 commit comments