Skip to content

Commit

Permalink
Merge branch 'wso2:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
GihanAyesh authored Dec 18, 2023
2 parents 5ec5c98 + 2e1f9c7 commit f211be8
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>org.wso2.carbon.apimgt.ui</groupId>
<artifactId>apim.ui.apps</artifactId>
<packaging>pom</packaging>
<version>9.0.483-SNAPSHOT</version>
<version>9.0.484-SNAPSHOT</version>
<name>WSO2 API Manager UI - Parent</name>
<url>https://wso2.org</url>

Expand Down
2 changes: 1 addition & 1 deletion portals/admin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.carbon.apimgt.ui</groupId>
<artifactId>apim.ui.apps</artifactId>
<version>9.0.483-SNAPSHOT</version>
<version>9.0.484-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion portals/devportal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.carbon.apimgt.ui</groupId>
<artifactId>apim.ui.apps</artifactId>
<version>9.0.483-SNAPSHOT</version>
<version>9.0.484-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions portals/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
<parent>
<groupId>org.wso2.carbon.apimgt.ui</groupId>
<artifactId>apim.ui.apps</artifactId>
<version>9.0.483-SNAPSHOT</version>
<version>9.0.484-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>apim.ui.apps.portals</artifactId>
<packaging>pom</packaging>
<version>9.0.483-SNAPSHOT</version>
<version>9.0.484-SNAPSHOT</version>
<name>WSO2 API Manager UI Portals - Parent</name>
<url>https://wso2.org</url>

Expand Down
2 changes: 1 addition & 1 deletion portals/publisher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.wso2.carbon.apimgt.ui</groupId>
<artifactId>apim.ui.apps</artifactId>
<version>9.0.483-SNAPSHOT</version>
<version>9.0.484-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@
}
}
},
"maxSubscriptionLimit": 2000
"maxSubscriptionLimit": 2000,
"maxScopeCount": 2000
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,8 @@ export default function Resources(props) {

useEffect(() => {
if (api.apitype !== 'APIProduct') {
API.getAllScopes()
const maxScopeLimit = Configurations.apis.maxScopeCount;
API.getAllScopes(0, maxScopeLimit)
.then((response) => {
if (response.body && response.body.list) {
const sharedScopesList = [];
Expand Down

0 comments on commit f211be8

Please sign in to comment.