Skip to content

Commit

Permalink
Add requested changes from review
Browse files Browse the repository at this point in the history
  • Loading branch information
SavinduDimal committed Mar 22, 2024
1 parent f9b6e75 commit 04b8ced
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Copyright (c) 2023, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
* Copyright (c) 2024, WSO2 LLC. (http://www.wso2.com) All Rights Reserved.
*
* WSO2 Inc. licenses this file to you under the Apache License,
* WSO2 LLC. licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except
* in compliance with the License.
* You may obtain a copy of the License at
Expand Down Expand Up @@ -60,11 +60,6 @@ const styles = {
minHeight: 43,
backgroundColor: '#f6f6f6',
},
// root: {
// flexGrow: 1,
// minHeight: 'calc(100vh - (100px))',
// backgroundColor: '#eaeff1',
// },
};

const StyledDiv = styled('div')({});
Expand Down
4 changes: 2 additions & 2 deletions portals/admin/src/main/webapp/source/src/app/data/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,7 @@ class API extends Resource {
*/
getKeyManagerApplicationUsages(keyManagerId) {
return this.client.then((client) => {
return client.apis["Key Manager (Individual)"].get_key_managers__keyManagerId__app_usages(
return client.apis['Key Manager (Individual)'].get_key_managers__keyManagerId__app_usages(
{ keyManagerId: keyManagerId },
this._requestMetaData(),
);
Expand All @@ -897,7 +897,7 @@ class API extends Resource {
*/
getKeyManagerApiUsages(keyManagerId) {
return this.client.then((client) => {
return client.apis["Key Manager (Individual)"].get_key_managers__keyManagerId__api_usages(
return client.apis['Key Manager (Individual)'].get_key_managers__keyManagerId__api_usages(
{ keyManagerId: keyManagerId },
this._requestMetaData(),
);
Expand Down

0 comments on commit 04b8ced

Please sign in to comment.