Skip to content
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM nginx:stable-alpine
COPY ./storybook-static /usr/share/nginx/html
FROM nginxinc/nginx-unprivileged:1.20.0-alpine
COPY ./storybook-static /usr/share/nginx/html
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@soramitsu/soramitsu-js-ui",
"version": "1.0.27",
"version": "1.0.28",
"private": false,
"publishConfig": {
"registry": "https://nexus.iroha.tech/repository/npm-soramitsu/"
Expand Down
1 change: 1 addition & 0 deletions src/components/Input/SFloatInput/SFloatInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ export default class SFloatInput extends Vue {
// Add prefix zero if needed
if (formatted.indexOf(DEFAULT_DECIMAL_DELIMITER) === 0) {
formatted = '0' + formatted
this.charsCountBeforeSelection++
}

// Avoid several decimal delimiters
Expand Down