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

#1839 – removed lightweight tag from page title #1848

Merged
merged 1 commit into from
Nov 16, 2022
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
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