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 08498e5 commit 9ae1538Copy full SHA for 9ae1538
src/main/java/com/github/introfog/gitwave/controller/main/ParametersTabController.java
@@ -37,7 +37,7 @@
37
38
public class ParametersTabController extends SupportController {
39
private static final Logger LOGGER = LoggerFactory.getLogger(ParametersTabController.class);
40
- private static final Pattern PARAMETERS_PATTERN = Pattern.compile("\\{(\\S+)\\}");
+ private static final Pattern PARAMETERS_PATTERN = Pattern.compile("\\{([^{}\\s]+)\\}");
41
private static final Pattern ONLY_SPACES_PATTERN = Pattern.compile("^\\s*$");
42
private final Label parametersText;
43
private final TableView<ParameterDto> parametersTable;
0 commit comments