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 ea1bd4a commit 3f32af7Copy full SHA for 3f32af7
@webwriter/core/view/elements/datainputs/pathinput.ts
@@ -38,7 +38,8 @@ export class PathInput extends SlInput implements DataInput {
38
39
// @ts-ignore
40
get pattern() {
41
- return unixPathPattern // TODO: Issue with Windows regex on some systems?
+
42
+ return ".*" // TODO: Issue with Windows regex on some systems?
43
return window.WEBWRITER_ENVIRONMENT.os.name === "Windows"? windowsPathPattern.source: unixPathPattern.source
44
}
45
0 commit comments