Merge pull request #1085 from josepfo/fix/user-management-page-bugs
fix: button style and incomplete url
This commit is contained in:
commit
2da14d64b3
2 changed files with 8 additions and 1 deletions
|
|
@ -118,6 +118,9 @@ const styles = {
|
||||||
actionButtonWrapper: {
|
actionButtonWrapper: {
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
gap: 12
|
gap: 12
|
||||||
|
},
|
||||||
|
enterButton: {
|
||||||
|
display: 'none'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,8 @@
|
||||||
const url = `https://${window.location.hostname}`
|
const url = `https://${
|
||||||
|
process.env.NODE_ENV === 'development'
|
||||||
|
? window.location.host
|
||||||
|
: window.location.hostname
|
||||||
|
}`
|
||||||
|
|
||||||
const urlResolver = content => `${url}${content}`
|
const urlResolver = content => `${url}${content}`
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue