Skip to content

Commit

Permalink
标签应该是not-pub而不是no-pub
Browse files Browse the repository at this point in the history
  • Loading branch information
entropy-cloud committed Sep 24, 2024
1 parent fde4994 commit 709efa3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nop-orm/src/main/resources/_vfs/nop/orm/xlib/orm-gen.xlib
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<c:for var="colNode" items="${jsonCols}">
<c:script>
const pub =
!colNode.attrCsvSet('tagSet')?.contains('no-pub')
!colNode.attrCsvSet('tagSet')?.contains('not-pub')
</c:script>
<component name="${colNode.getAttr('name')}Component" needFlush="true"
notGenCode="${colNode.getAttr('notGenCode')}"
Expand Down Expand Up @@ -110,7 +110,7 @@
<c:for var="colNode" items="${xmlCols}">
<c:script>
const pub =
!colNode.attrCsvSet('tagSet')?.contains('no-pub')
!colNode.attrCsvSet('tagSet')?.contains('not-pub')
</c:script>
<component name="${colNode.getAttr('name')}XmlComponent" needFlush="true"
notGenCode="${colNode.getAttr('notGenCode')}"
Expand Down Expand Up @@ -298,7 +298,7 @@
<c:for var="colNode" items="${fileCols}">
<c:script>
const pub =
!colNode.attrCsvSet('tagSet')?.contains('no-pub')
!colNode.attrCsvSet('tagSet')?.contains('not-pub')
</c:script>
<component name="${colNode.getAttr('name')}Component" needFlush="true"
notGenCode="${colNode.getAttr('notGenCode')}"
Expand Down

0 comments on commit 709efa3

Please sign in to comment.