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

Improve the profile feature to Show the logged user name

See merge request entgra/carbon-device-mgt!312
feature/appm-store/pbac
Dharmakeerthi Lasantha 5 years ago
commit ace268e12a

@ -102,6 +102,7 @@ class App extends React.Component {
window.location.origin + "/publisher-ui-request-handler/user",
"platform=publisher"
).then(res => {
config.user = res.data.data;
const pageURL = window.location.pathname;
const lastURLSegment = pageURL.substr(pageURL.lastIndexOf('/') + 1);
if (lastURLSegment === "login") {

@ -221,7 +221,7 @@ class NewAppUploadForm extends React.Component {
};
handleLowerOsVersionChange = (lowerOsVersion) => {
this.lowerOsVersion = lowerOsVersion;
this.lowerOsVersion = parseFloat(lowerOsVersion);
this.setState({
osVersionsValidateStatus: 'validating',
osVersionsHelperText: ''
@ -229,7 +229,7 @@ class NewAppUploadForm extends React.Component {
};
handleUpperOsVersionChange = (upperOsVersion) => {
this.upperOsVersion = upperOsVersion;
this.upperOsVersion = parseFloat(upperOsVersion);
this.setState({
osVersionsValidateStatus: 'validating',
osVersionsHelperText: ''
@ -479,6 +479,7 @@ class NewAppUploadForm extends React.Component {
required: true,
message: 'Please select'
}],
initialValue: false
})(
<Switch checkedChildren={<Icon type="check"/>}
unCheckedChildren={<Icon type="close"/>}

@ -122,7 +122,7 @@ class Dashboard extends React.Component {
<SubMenu className="profile"
title={
<span className="submenu-title-wrapper">
<Icon type="user"/>Profile
<Icon type="user"/>{this.config.user}
</span>}>
<Logout/>
</SubMenu>

@ -82,6 +82,7 @@ class App extends React.Component {
window.location.origin + "/store-ui-request-handler/user",
"platform=publisher"
).then(res => {
config.user = res.data.data;
const pageURL = window.location.pathname;
const lastURLSegment = pageURL.substr(pageURL.lastIndexOf('/') + 1);
if (lastURLSegment === "login") {

@ -41,6 +41,7 @@ class Dashboard extends React.Component {
collapsed: false
};
this.logo = this.props.context.theme.logo;
this.config = this.props.context;
}
componentDidMount() {
@ -138,7 +139,7 @@ class Dashboard extends React.Component {
title={
<span className="submenu-title-wrapper">
<Icon type="user"/>
Profile
{this.config.user}
</span> }>
<Logout/>
</SubMenu>

Loading…
Cancel
Save