diff options
author | John Estabrook <jestabro@vyos.io> | 2024-03-10 15:03:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-10 15:03:04 -0500 |
commit | 5472986c1fa75542bf8b87159eec318e50fda13f (patch) | |
tree | 1088c329511e5caa61c8c08d9ea9af447398c223 | |
parent | c29023becfe26e19284d9520820f5c00eefd6527 (diff) | |
parent | 9ec374140aa206b97161c735e9f0512148480866 (diff) | |
download | vyos-1x-5472986c1fa75542bf8b87159eec318e50fda13f.tar.gz vyos-1x-5472986c1fa75542bf8b87159eec318e50fda13f.zip |
Merge pull request #3116 from vyos/mergify/bp/sagitta/pr-3115
xml: T5738: revert invalid change from lower character limit - 0 length must be allowed (backport #3115)
-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 ffe037a01..0b3701534 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:]]{1,255}</regex> + <regex>[[:ascii:]]{0,255}</regex> </constraint> <constraintErrorMessage>Description too long (limit 255 characters)</constraintErrorMessage> </properties> |