Merge branch 'application-mgt-new' into 'application-mgt-new'

Add tenant domain to the login form

See merge request tcdlpds/carbon-device-mgt!7
feature/appm-store/pbac
Dharmakeerthi Lasantha 5 years ago
commit 5e8f6903e5

@ -92,7 +92,6 @@ class AppDetailsDrawer extends React.Component {
componentDidMount() {
this.getCategories();
this.getTags();
}
componentDidUpdate(prevProps, prevState, snapshot) {
@ -117,7 +116,7 @@ class AppDetailsDrawer extends React.Component {
).then(res => {
if (res.status === 200) {
const categories = JSON.parse(res.data.data);
this.getTags();
const globalCategories = categories.map(category => {
return (
<Option

@ -75,8 +75,6 @@ class FiltersForm extends React.Component {
componentDidMount() {
this.getCategories();
this.getTags();
this.getDeviceTypes();
}
getCategories = () => {
@ -86,6 +84,7 @@ class FiltersForm extends React.Component {
).then(res => {
if (res.status === 200) {
let categories = JSON.parse(res.data.data);
this.getTags();
this.setState({
categories: categories,
loading: false
@ -116,6 +115,7 @@ class FiltersForm extends React.Component {
).then(res => {
if (res.status === 200) {
let tags = JSON.parse(res.data.data);
this.getDeviceTypes();
this.setState({
tags: tags,
loading: false,

Loading…
Cancel
Save