Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: #830 Add space between texts in tag component #955

Merged
merged 1 commit into from
Apr 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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