Merge pull request #1085 from josepfo/fix/user-management-page-bugs

fix: button style and incomplete url
This commit is contained in:
Rafael Taranto 2022-02-02 18:17:31 +00:00 committed by GitHub
commit 2da14d64b3
2 changed files with 8 additions and 1 deletions

View file

@ -118,6 +118,9 @@ const styles = {
actionButtonWrapper: { actionButtonWrapper: {
display: 'flex', display: 'flex',
gap: 12 gap: 12
},
enterButton: {
display: 'none'
} }
} }

View file

@ -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}`