Skip to content

Commit

Permalink
#1839 – removed lightweight tag from page title
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitvex committed Nov 14, 2022
1 parent f831891 commit 12f5c80
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
7 changes: 3 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@ assignees: evgeniiFrolov1
2. Click on '....'
3. Scroll down to '....'

**Actual behavior**
A clear and concise description of what the bug is.

**Expected behavior**
A clear and concise description of what you expected to happen.

**Actual behavior**
A clear and concise description of what the bug is.

**Screenshots**
If applicable, add screenshots to help explain your problem.

Expand All @@ -33,7 +32,7 @@ If applicable, add screenshots to help explain your problem.
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Ketcher version** [e.g. v2.4.2-115-gcf0c1394].
**Ketcher version** [e.g. v2.4.2].
To determine it, hover over the header of the Ketcher tab in a browser.

**Additional context**
Expand Down
5 changes: 3 additions & 2 deletions example/config/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ const webpack = require('webpack')
const HtmlReplaceWebpackPlugin = require('html-replace-webpack-plugin')
const GitRevisionPlugin = require('git-revision-webpack-plugin')

const gitRevisionPlugin = new GitRevisionPlugin({ lightweightTags: true })
const gitRevisionPlugin = new GitRevisionPlugin()
const applicationVersion = gitRevisionPlugin.version().split('-')[0]

module.exports = override(
addBundleVisualizer({}, true),
Expand All @@ -29,7 +30,7 @@ module.exports = override(
new HtmlReplaceWebpackPlugin([
{
pattern: '@@version',
replacement: gitRevisionPlugin.version()
replacement: applicationVersion
}
])
)
Expand Down

0 comments on commit 12f5c80

Please sign in to comment.