Skip to content

Commit

Permalink
chore: #830 Add space between texts in tag component (#955)
Browse files Browse the repository at this point in the history
  • Loading branch information
trankhacvy authored Apr 20, 2020
1 parent c6ccb5d commit 8221884
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/elements/.storybook/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { EnvironmentPlugin } = require('webpack')
const path = require('path')
// const configEnv = require('../config.json')
const configEnv = require('../config.json')
const { getVersionTag } = require('../../../scripts/release/utils')

module.exports = ({ config }) => {
Expand Down Expand Up @@ -49,7 +49,7 @@ module.exports = ({ config }) => {
)
config.resolve.extensions.push('.ts', '.tsx')
config.plugins.push(new EnvironmentPlugin({
// ...configEnv,
...configEnv,
APP_VERSION: `${getVersionTag().version}`,
}))
return config
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ exports[`CustomTag should match a snapshot 1`] = `
>
The type of Property will be given to an application that can be launched for a
specific property from Agency Cloud.
<span>
For more information on
<b>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const CustomTag: React.FC<CustomTagProps> = ({ label, description, link,
placement="bottomLeft"
overlay={
<span className="reapit-tooltip-content">
{description}
{description}{' '}
{link && (
<span>
For more information on <b>{label}</b>, please{' '}
Expand Down

0 comments on commit 8221884

Please sign in to comment.