diff options
author | John Estabrook <jestabro@vyos.io> | 2024-03-10 15:35:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-10 15:35:56 -0500 |
commit | 30307353bf9c7aaa1e3d04822cca388196b1febd (patch) | |
tree | 58dd321c9bbb8c47bbf1e691b32a7b605d49b3d0 | |
parent | 5472986c1fa75542bf8b87159eec318e50fda13f (diff) | |
parent | 72a8a1ebde5b24a6a888137aca1a450b298942db (diff) | |
download | vyos-1x-30307353bf9c7aaa1e3d04822cca388196b1febd.tar.gz vyos-1x-30307353bf9c7aaa1e3d04822cca388196b1febd.zip |
Merge pull request #3119 from vyos/mergify/bp/sagitta/pr-3110
xml: T6098: relax description constraint to allow non-ascii characters (backport #3110)
-rw-r--r-- | interface-definitions/include/generic-description.xml.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interface-definitions/include/generic-description.xml.i b/interface-definitions/include/generic-description.xml.i index 0b3701534..7e091eae7 100644 --- a/interface-definitions/include/generic-description.xml.i +++ b/interface-definitions/include/generic-description.xml.i @@ -7,7 +7,7 @@ <description>Description</description> </valueHelp> <constraint> - <regex>[[:ascii:]]{0,255}</regex> + <regex>.{0,255}</regex> </constraint> <constraintErrorMessage>Description too long (limit 255 characters)</constraintErrorMessage> </properties> |